[][src]Struct grdf::hash_dataset::HashDataset

pub struct HashDataset<T: Hash + Eq> { /* fields omitted */ }

Implementations

impl<T: Hash + Eq> HashDataset<T>[src]

pub fn new() -> Self[src]

Trait Implementations

impl<T: 'static + Hash + Eq> Dataset<T> for HashDataset<T>[src]

type Graph = HashGraph<T>

Type of graphs in the dataset.

type Graphs = Graphs<'a, T>

Graph iterator. Read more

type Quads = Quads<'a, T>

Quads iterator.

impl<T: Hash + Eq> Default for HashDataset<T>[src]

impl<T: 'static + Hash + Eq> MutableDataset<T> for HashDataset<T>[src]

type GraphsMut = GraphsMut<'a, T>

Iterator over mutable graphs.

impl<T: 'static + Clone + Hash + Eq> SizedDataset<T> for HashDataset<T>[src]

type IntoGraphs = IntoGraphs<T>

Consuming graphs iterator.

type IntoQuads = IntoQuads<T>

Consuming quads iterator.

Auto Trait Implementations

impl<T> RefUnwindSafe for HashDataset<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for HashDataset<T> where
    T: Send
[src]

impl<T> Sync for HashDataset<T> where
    T: Sync
[src]

impl<T> Unpin for HashDataset<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for HashDataset<T> where
    T: UnwindSafe
[src]

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<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.