pub struct MessageManager<MWH> {
pub bides: Bides,
pub data_unused: Vec<u8>,
pub header_successfully_read: bool,
pub payload_size: usize,
pub msg_with_header: MWH,
}Fields§
§bides: Bides§data_unused: Vec<u8>§header_successfully_read: bool§payload_size: usize§msg_with_header: MWHTrait Implementations§
Source§impl<MWH: Clone> Clone for MessageManager<MWH>
impl<MWH: Clone> Clone for MessageManager<MWH>
Source§fn clone(&self) -> MessageManager<MWH>
fn clone(&self) -> MessageManager<MWH>
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl<MWH> Freeze for MessageManager<MWH>where
MWH: Freeze,
impl<MWH> RefUnwindSafe for MessageManager<MWH>where
MWH: RefUnwindSafe,
impl<MWH> Send for MessageManager<MWH>where
MWH: Send,
impl<MWH> Sync for MessageManager<MWH>where
MWH: Sync,
impl<MWH> Unpin for MessageManager<MWH>where
MWH: Unpin,
impl<MWH> UnwindSafe for MessageManager<MWH>where
MWH: 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