[][src]Struct stacked::SVec512

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

Methods

impl<T> SVec512<T>[src]

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

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

impl SVec512<u8>[src]

pub fn as_str(&self) -> Result<&str, KErr>[src]

Trait Implementations

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

type Item = T

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

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

type Item = &'a T

The type of the elements being iterated over.

type IntoIter = Iter<'a, T>

Which kind of iterator are we turning this into?

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

type Item = &'a mut T

The type of the elements being iterated over.

type IntoIter = IterMut<'a, T>

Which kind of iterator are we turning this into?

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

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

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

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

type Output = T

The returned type after indexing.

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

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

Auto Trait Implementations

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

impl<T> !Sync for SVec512<T>

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

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

impl<T> !RefUnwindSafe for SVec512<T>

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]