pub trait Stream<A> {
    type Iter: IntoIterator<Item = A>;

    fn stream(&self) -> Self::Iter;
    fn copy(&self) -> Self;
}
Expand description

Uniform API for reading Values from a Store

Required Associated Types§

Iterator, yielding owned value

Required Methods§

Returns an iterator with owned values.

Returns a copy of the store.

Implementations on Foreign Types§

Implementors§