Struct EstablishedConnection
struct EstablishedConnection<R, W> {
reader: R,
writer: W,
decoder: Decoder,
body_buf: Vec<u8>,
outbound_aliases: OutboundAliases,
inbound_aliases: InboundAliases,
max_packet_size: Option<u32>,
}Expand description
State produced by a successful connect + CONNACK handshake.
Fields§
§reader: R§writer: W§decoder: Decoder§body_buf: Vec<u8>§outbound_aliases: OutboundAliases§inbound_aliases: InboundAliases§max_packet_size: Option<u32>Auto Trait Implementations§
impl<R, W> Freeze for EstablishedConnection<R, W>
impl<R, W> RefUnwindSafe for EstablishedConnection<R, W>where
R: RefUnwindSafe,
W: RefUnwindSafe,
impl<R, W> Send for EstablishedConnection<R, W>
impl<R, W> Sync for EstablishedConnection<R, W>
impl<R, W> Unpin for EstablishedConnection<R, W>
impl<R, W> UnwindSafe for EstablishedConnection<R, W>where
R: UnwindSafe,
W: UnwindSafe,
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