Struct market::Goods[][src]

pub struct Goods<'a, C: Consumer> { /* fields omitted */ }

An Iterator of the consumptions of a Consumer.

Trait Implementations

impl<'a, C: Debug + Consumer> Debug for Goods<'a, C>[src]

impl<C: Consumer> Iterator for Goods<'_, C>[src]

type Item = Result<<C as Consumer>::Good, <<C as Consumer>::Failure as Failure>::Fault>

The type of the elements being iterated over.

Auto Trait Implementations

impl<'a, C> RefUnwindSafe for Goods<'a, C> where
    C: RefUnwindSafe
[src]

impl<'a, C> Send for Goods<'a, C> where
    C: Sync
[src]

impl<'a, C> Sync for Goods<'a, C> where
    C: Sync
[src]

impl<'a, C> Unpin for Goods<'a, C>[src]

impl<'a, C> UnwindSafe for Goods<'a, C> where
    C: RefUnwindSafe
[src]

Blanket Implementations

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

impl<P, C> AssembleInto<C> for P where
    C: AssembleFrom<P>, 
[src]

type Error = <C as AssembleFrom<P>>::Error

Describes an error with the parts. Read more

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

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

impl<P, C> DisassembleInto<P> for C where
    P: DisassembleFrom<C>, 
[src]

type Error = <P as DisassembleFrom<C>>::Error

Describes an error that prevents disassembly.

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.