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

pub struct Channel {
    pub id: u16,
    pub state: ChannelState,
    pub frame_queue: VecDeque<AMQPFrame>,
    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]

Trait Implementations

impl Debug for Channel
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Channel

impl Sync for Channel