[][src]Struct gluon_base::fixed::FixedVec

pub struct FixedVec<T> { /* fields omitted */ }

Implementations

impl<T> FixedVec<T>[src]

pub fn new() -> FixedVec<T>[src]

pub fn clear(&mut self)[src]

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

pub fn extend<I: IntoIterator<Item = T>>(&self, iter: I)[src]

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

pub fn is_empty(&self) -> bool[src]

pub fn iter(&self) -> impl Iterator<Item = &T>[src]

pub fn get(&self, index: usize) -> Option<&T>[src]

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

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

Trait Implementations

impl<T: Debug> Debug for FixedVec<T>[src]

impl<T> Default for FixedVec<T>[src]

impl<T> Index<usize> for FixedVec<T>[src]

type Output = T

The returned type after indexing.

impl<T> IndexMut<usize> for FixedVec<T>[src]

Auto Trait Implementations

impl<T> !RefUnwindSafe for FixedVec<T>

impl<T> Send for FixedVec<T> where
    T: Send

impl<T> !Sync for FixedVec<T>

impl<T> Unpin for FixedVec<T> where
    T: Unpin

impl<T> UnwindSafe for FixedVec<T> where
    T: UnwindSafe

Blanket Implementations

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

impl<Id> AsId<Id> for Id where
    Id: ?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.