[−][src]Trait arraydeque::Array
Trait for fixed size arrays.
Associated Types
Required methods
fn as_ptr(&self) -> *const Self::Item
[−]
Returns a raw pointer to the slice's buffer.
fn as_mut_ptr(&mut self) -> *mut Self::Item
[−]
Returns an unsafe mutable pointer to the slice's buffer.
fn capacity() -> usize
[−]
Returns number of element the array can hold
Provided methods
fn as_slice(&self) -> &[Self::Item]
[−]
Converts the array to immutable slice
fn as_mut_slice(&mut self) -> &mut [Self::Item]
[−]
Converts the array to mutable slice