Struct sprs::CsIter[][src]

pub struct CsIter<'a, N: 'a, I: 'a, Iptr: 'a = I> where
    I: SpIndex,
    Iptr: SpIndex
{ /* fields omitted */ }

Trait Implementations

impl<'a, N, I, Iptr> Iterator for CsIter<'a, N, I, Iptr> where
    I: SpIndex,
    Iptr: SpIndex,
    N: 'a, 
[src]

type Item = (&'a N, (I, I))

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, N, I, Iptr> RefUnwindSafe for CsIter<'a, N, I, Iptr> where
    I: RefUnwindSafe,
    Iptr: RefUnwindSafe,
    N: RefUnwindSafe

impl<'a, N, I, Iptr> Send for CsIter<'a, N, I, Iptr> where
    N: Sync

impl<'a, N, I, Iptr> Sync for CsIter<'a, N, I, Iptr> where
    N: Sync

impl<'a, N, I, Iptr> Unpin for CsIter<'a, N, I, Iptr> where
    I: Unpin

impl<'a, N, I, Iptr> UnwindSafe for CsIter<'a, N, I, Iptr> where
    I: RefUnwindSafe + UnwindSafe,
    Iptr: RefUnwindSafe,
    N: RefUnwindSafe

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<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[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.