[][src]Enum sprs::vec::NnzEither

pub enum NnzEither<'a, N1: 'a, N2: 'a> {
    Both((usize, &'a N1, &'a N2)),
    Left((usize, &'a N1)),
    Right((usize, &'a N2)),
}

Variants

Both((usize, &'a N1, &'a N2))Left((usize, &'a N1))Right((usize, &'a N2))

Trait Implementations

impl<'a, N1: PartialEq + 'a, N2: PartialEq + 'a> PartialEq<NnzEither<'a, N1, N2>> for NnzEither<'a, N1, N2>[src]

impl<'a, N1: Debug + 'a, N2: Debug + 'a> Debug for NnzEither<'a, N1, N2>[src]

Auto Trait Implementations

impl<'a, N1, N2> Send for NnzEither<'a, N1, N2> where
    N1: Sync,
    N2: Sync

impl<'a, N1, N2> Sync for NnzEither<'a, N1, N2> where
    N1: Sync,
    N2: Sync

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

impl<SS, SP> SupersetOf for SP where
    SS: SubsetOf<SP>, 
[src]