[][src]Trait shine_graph::svec::Store

pub trait Store {
type Item;
    fn get(&self, idx: usize) -> &Self::Item;
}

Associated Types

type Item

Loading content...

Required methods

fn get(&self, idx: usize) -> &Self::Item

Loading content...

Implementors

impl Store for UnitStore[src]

type Item = ()

impl<T> Store for DenseStore<T>[src]

type Item = T

impl<T> Store for HashStore<T>[src]

type Item = T

Loading content...