[][src]Struct sprs::vec::NnzIndex

pub struct NnzIndex(pub usize);

Hold the index of a non-zero element in the compressed storage

An NnzIndex can be used to later access the non-zero element in constant time.

Trait Implementations

impl Copy for NnzIndex[src]

impl PartialEq<NnzIndex> for NnzIndex[src]

impl Clone for NnzIndex[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for NnzIndex[src]

impl Debug for NnzIndex[src]

impl<N, IS, DS> Index<NnzIndex> for CsVecBase<IS, DS> where
    IS: Deref<Target = [usize]>,
    DS: Deref<Target = [N]>, 
[src]

type Output = N

The returned type after indexing.

impl<N, IS, DS> IndexMut<NnzIndex> for CsVecBase<IS, DS> where
    IS: Deref<Target = [usize]>,
    DS: DerefMut<Target = [N]>, 
[src]

Auto Trait Implementations

impl Send for NnzIndex

impl Sync for NnzIndex

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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]