[][src]Struct amqp::ConsumeBuilder

pub struct ConsumeBuilder<T> where
    T: Consumer + 'static, 
{ /* fields omitted */ }

Methods

impl<T: Consumer + 'static> ConsumeBuilder<T>
[src]

pub fn new<S>(callback: T, name: S) -> ConsumeBuilder<T> where
    S: Into<String>, 
[src]

pub fn tag<S>(self, tag: S) -> ConsumeBuilder<T> where
    S: Into<String>, 
[src]

pub fn no_local(self) -> ConsumeBuilder<T>
[src]

pub fn no_ack(self) -> ConsumeBuilder<T>
[src]

pub fn exclusive(self) -> ConsumeBuilder<T>
[src]

pub fn nowait(self) -> ConsumeBuilder<T>
[src]

pub fn basic_consume(self, channel: &mut Channel) -> Result<String, AMQPError>
[src]

Auto Trait Implementations

impl<T> Send for ConsumeBuilder<T>

impl<T> Sync for ConsumeBuilder<T> where
    T: Sync

Blanket Implementations

impl<T> From for T
[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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