[][src]Struct rocks::debug::KeyVersionVec

pub struct KeyVersionVec<'a> { /* fields omitted */ }

Implementations

impl<'a> KeyVersionVec<'a>[src]

pub fn len(&self) -> usize[src]

pub fn is_empty(&self) -> bool[src]

pub fn iter(&self) -> KeyVersionVecIter<'_>

Notable traits for KeyVersionVecIter<'a>

impl<'a> Iterator for KeyVersionVecIter<'a> type Item = &'a KeyVersion;
[src]

Trait Implementations

impl<'a> Debug for KeyVersionVec<'a>[src]

impl<'a> Drop for KeyVersionVec<'a>[src]

impl<'a> Index<usize> for KeyVersionVec<'a>[src]

type Output = KeyVersion

The returned type after indexing.

impl<'a> IntoIterator for &'a KeyVersionVec<'a>[src]

type Item = &'a KeyVersion

The type of the elements being iterated over.

type IntoIter = KeyVersionVecIter<'a>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<'a> RefUnwindSafe for KeyVersionVec<'a>[src]

impl<'a> !Send for KeyVersionVec<'a>[src]

impl<'a> !Sync for KeyVersionVec<'a>[src]

impl<'a> Unpin for KeyVersionVec<'a>[src]

impl<'a> UnwindSafe for KeyVersionVec<'a>[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.