pub struct DynArray<T> { /* private fields */ }Expand description
A dynamically sized, contiguous storage buffer with positive (forward) indexing, where elements are stored sequentially in memory.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for DynArray<T>
impl<T> RefUnwindSafe for DynArray<T>where
T: RefUnwindSafe,
impl<T> !Send for DynArray<T>
impl<T> !Sync for DynArray<T>
impl<T> Unpin for DynArray<T>
impl<T> UnwindSafe for DynArray<T>where
T: RefUnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more