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>,
    pub confirm: bool,
    pub message_count: u64,
    pub acked: HashSet<u64>,
    pub nacked: HashSet<u64>,
    pub unacked: HashSet<u64>,
}

Fields

Methods

impl Channel
[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl Clone for Channel
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Channel
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for Channel
[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 Channel

impl Sync for Channel