Struct lapin_async::channel::Channel [] [src]

pub struct Channel {
    pub id: u16,
    pub state: ChannelState,
    pub frame_queue: VecDeque<Frame>,
    pub send_flow: bool,
    pub receive_flow: bool,
    pub queues: HashMap<String, Queue>,
    pub prefetch_size: u32,
    pub prefetch_count: u16,
    pub awaiting: VecDeque<Answer>,
}

Fields

Methods

impl Channel
[src]

Trait Implementations

impl Clone for Channel
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Channel
[src]

Formats the value using the given formatter.

impl PartialEq for Channel
[src]

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

This method tests for !=.