[][src]Struct stacked::SVec128

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

Methods

impl<T> SVec128<T>[src]

pub fn cap_of_type() -> usize[src]

pub fn new_of<U>(&self) -> SVec128<U>[src]

pub fn try_from_iter<I>(iter: I) -> Result<Self, KErr> where
    I: IntoIterator<Item = T>, 
[src]

impl SVec128<u8>[src]

pub fn as_string(&self) -> Result<String, KErr>[src]

Trait Implementations

impl<T> SVec for SVec128<T>[src]

type Item = T

impl<T> Drop for SVec128<T>[src]

impl<T, I> From<I> for SVec128<T> where
    I: IntoIterator<Item = T>, 
[src]

impl<'a, T> IntoIterator for &'a SVec128<T>[src]

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = Box<dyn Iterator<Item = Self::Item> + 'a>

Which kind of iterator are we turning this into?

impl<'a, T> IntoIterator for &'a mut SVec128<T>[src]

type Item = &'a mut T

The type of the elements being iterated over.

type IntoIter = Box<dyn Iterator<Item = Self::Item> + 'a>

Which kind of iterator are we turning this into?

impl<T, V> PartialEq<V> for SVec128<T> where
    T: PartialEq,
    V: SVec<Item = T, Output = T>, 
[src]

impl<T> Display for SVec128<T> where
    T: Display
[src]

impl<T> Debug for SVec128<T> where
    T: Debug
[src]

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

type Output = T

The returned type after indexing.

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

impl<T> FromIterator<T> for SVec128<T>[src]

Auto Trait Implementations

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

impl<T> Sync for SVec128<T> where
    T: Sync

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

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

impl<T> RefUnwindSafe for SVec128<T> where
    T: RefUnwindSafe

Blanket Implementations

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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

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

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