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

pub struct Queue {
    pub name: String,
    pub bindings: HashMap<(String, String), Binding>,
    pub consumers: HashMap<String, Consumer>,
    pub message_count: u32,
    pub consumer_count: u32,
    pub get_messages: VecDeque<BasicGetMessage>,
    pub current_get_message: Option<BasicGetMessage>,
}

Fields

Methods

impl Queue
[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for Queue
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Queue
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Queue
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations

impl Send for Queue

impl Sync for Queue