pub struct FlowInner {
pub next_incoming_id: Option<TransferNumber>,
pub incoming_window: u32,
pub next_outgoing_id: TransferNumber,
pub outgoing_window: u32,
pub handle: Option<Handle>,
pub delivery_count: Option<SequenceNo>,
pub link_credit: Option<u32>,
pub available: Option<u32>,
pub drain: bool,
pub echo: bool,
pub properties: Option<Fields>,
}
Fields§
§next_incoming_id: Option<TransferNumber>
§incoming_window: u32
§next_outgoing_id: TransferNumber
§outgoing_window: u32
§handle: Option<Handle>
§delivery_count: Option<SequenceNo>
§link_credit: Option<u32>
§available: Option<u32>
§drain: bool
§echo: bool
§properties: Option<Fields>
Trait Implementations§
impl Eq for FlowInner
impl StructuralPartialEq for FlowInner
Auto Trait Implementations§
impl Freeze for FlowInner
impl !RefUnwindSafe for FlowInner
impl Send for FlowInner
impl Sync for FlowInner
impl Unpin for FlowInner
impl !UnwindSafe for FlowInner
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more