pub struct Channel {
Show 14 fields 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

id: u16state: ChannelStateframe_queue: VecDeque<AMQPFrame>send_flow: boolreceive_flow: boolqueues: HashMap<String, Queue>prefetch_size: u32prefetch_count: u16awaiting: VecDeque<Answer>confirm: boolmessage_count: u64acked: HashSet<u64>nacked: HashSet<u64>unacked: HashSet<u64>

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.