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