[][src]Struct lapin_async::queue::QueueState

pub struct QueueState {
    pub name: ShortString,
    pub consumers: HashMap<ShortString, Consumer>,
    // some fields omitted
}

Fields

name: ShortStringconsumers: HashMap<ShortString, Consumer>

Methods

impl QueueState[src]

pub fn drop_prefetched_messages(&mut self)[src]

pub fn start_new_delivery(
    &mut self,
    delivery: BasicGetMessage,
    wait_handle: WaitHandle<Option<BasicGetMessage>>
)
[src]

pub fn set_delivery_properties(&mut self, properties: BasicProperties)[src]

pub fn receive_delivery_content(&mut self, payload: Vec<u8>)[src]

pub fn new_delivery_complete(&mut self)[src]

Trait Implementations

impl From<Queue> for QueueState[src]

impl Debug for QueueState[src]

Auto Trait Implementations

impl Send for QueueState

impl Sync for QueueState

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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