Struct fixed_queue::Vec[][src]

pub struct Vec<T, const N: usize> { /* fields omitted */ }

Implementations

impl<T, const N: usize> Vec<T, N>[src]

pub const fn new() -> Self[src]

pub fn capacity(&self) -> usize[src]

pub fn as_ptr(&self) -> *const T[src]

pub fn as_mut_ptr(&mut self) -> *mut T[src]

pub fn clear(&mut self)[src]

pub fn truncate(&mut self, len: usize)[src]

pub unsafe fn set_len(&mut self, new_len: usize)[src]

pub fn pop(&mut self) -> Option<T>[src]

pub fn push(&mut self, value: T)[src]

pub fn swap_remove(&mut self, index: usize) -> T[src]

impl<T: Clone, const N: usize> Vec<T, N>[src]

pub fn extend_from_slice(&mut self, other: &[T])[src]

Trait Implementations

impl<T, const N: usize> Deref for Vec<T, N>[src]

type Target = [T]

The resulting type after dereferencing.

impl<T, const N: usize> DerefMut for Vec<T, N>[src]

Auto Trait Implementations

impl<T, const N: usize> Send for Vec<T, N> where
    T: Send

impl<T, const N: usize> Sync for Vec<T, N> where
    T: Sync

impl<T, const N: usize> Unpin for Vec<T, N> where
    T: Unpin

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.