Struct redis_module::key::HMGetIter[][src]

pub struct HMGetIter<'a, A, B> where
    A: Into<Vec<u8>>,
    RedisString: Into<B>, 
{ /* fields omitted */ }

Trait Implementations

impl<'a, A, B> Iterator for HMGetIter<'a, A, B> where
    A: Into<Vec<u8>> + Clone,
    RedisString: Into<B>, 
[src]

type Item = (A, B)

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, A, B> RefUnwindSafe for HMGetIter<'a, A, B> where
    A: RefUnwindSafe,
    B: RefUnwindSafe

impl<'a, A, B> !Send for HMGetIter<'a, A, B>

impl<'a, A, B> !Sync for HMGetIter<'a, A, B>

impl<'a, A, B> Unpin for HMGetIter<'a, A, B> where
    B: Unpin

impl<'a, A, B> UnwindSafe for HMGetIter<'a, A, B> where
    A: RefUnwindSafe,
    B: UnwindSafe

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