Trait IntoConsumer

Source
pub trait IntoConsumer {
    type Output;

    // Required method
    fn into_consumer(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn into_consumer(&self) -> Self::Output

Implementations on Foreign Types§

Source§

impl<A, B> IntoConsumer for (Dynamic<A>, Dynamic<B>)
where A: CommonBound, B: CommonBound,

Source§

type Output = Consumer2<A, B>

Source§

fn into_consumer(&self) -> Self::Output

Source§

impl<A, B, C> IntoConsumer for (Dynamic<A>, Dynamic<B>, Dynamic<C>)
where A: CommonBound, B: CommonBound, C: CommonBound,

Source§

type Output = Consumer3<A, B, C>

Source§

fn into_consumer(&self) -> Self::Output

Implementors§

Source§

impl<A> IntoConsumer for Dynamic<A>
where A: CommonBound,