pub struct DynamicArray<T>{ /* private fields */ }
Expand description
An array whose size is determined at runtime. The size of the array is public. The array is oblivious to the access pattern.
Implementations§
Source§impl<T> DynamicArray<T>
impl<T> DynamicArray<T>
Trait Implementations§
Source§impl<T> Debug for DynamicArray<T>
impl<T> Debug for DynamicArray<T>
Auto Trait Implementations§
impl<T> Freeze for DynamicArray<T>
impl<T> !RefUnwindSafe for DynamicArray<T>
impl<T> !Send for DynamicArray<T>
impl<T> !Sync for DynamicArray<T>
impl<T> Unpin for DynamicArray<T>where
T: Unpin,
impl<T> !UnwindSafe for DynamicArray<T>
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