Struct eta_algorithms::data_structs::array::Array
source · pub struct Array<T> { /* private fields */ }
Implementations§
source§impl<T> Array<T>
impl<T> Array<T>
pub fn capacity(&self) -> usize
pub fn extend(&mut self, new_capacity: usize)
pub fn extend_by(&mut self, additional_capacity: usize)
pub fn new(capacity: usize) -> Self
pub fn iter(&self) -> ArrayIterator<'_, T> ⓘ
pub fn iter_mut(&mut self) -> ArrayIteratorMut<'_, T> ⓘ
Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Array<T>
impl<T> RefUnwindSafe for Array<T>where
T: RefUnwindSafe,
impl<T> !Send for Array<T>
impl<T> !Sync for Array<T>
impl<T> Unpin for Array<T>where
T: Unpin,
impl<T> UnwindSafe for Array<T>where
T: UnwindSafe + 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