[][src]Struct rdms::VersionIter

pub struct VersionIter<K, V> where
    K: Clone + Ord,
    V: Clone + Diff + From<<V as Diff>::D>, 
{ /* fields omitted */ }

Iterate from latest to oldest available version for this entry.

Trait Implementations

impl<K, V> Iterator for VersionIter<K, V> where
    K: Clone + Ord,
    V: Clone + Diff + From<<V as Diff>::D>, 
[src]

type Item = Entry<K, V>

The type of the elements being iterated over.

Auto Trait Implementations

impl<K, V> Send for VersionIter<K, V> where
    K: Send,
    V: Send,
    <V as Diff>::D: Send

impl<K, V> Sync for VersionIter<K, V> where
    K: Sync,
    V: Sync,
    <V as Diff>::D: Sync

impl<K, V> Unpin for VersionIter<K, V> where
    K: Unpin,
    V: Unpin,
    <V as Diff>::D: Unpin

impl<K, V> UnwindSafe for VersionIter<K, V> where
    K: UnwindSafe,
    V: UnwindSafe,
    <V as Diff>::D: RefUnwindSafe + UnwindSafe

impl<K, V> RefUnwindSafe for VersionIter<K, V> where
    K: RefUnwindSafe,
    V: RefUnwindSafe,
    <V as Diff>::D: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]