Struct lapin_async::queue::Queue [] [src]

pub struct Queue {
    pub name: String,
    pub passive: bool,
    pub durable: bool,
    pub exclusive: bool,
    pub auto_delete: bool,
    pub bindings: HashMap<(String, String), Binding>,
    pub consumers: HashMap<String, Consumer>,
    pub message_count: u32,
    pub consumer_count: u32,
    pub created: bool,
}

Fields

Methods

impl Queue
[src]

Trait Implementations

impl Clone for Queue
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Queue
[src]

Formats the value using the given formatter.

impl PartialEq for Queue
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.