pub enum MsgType {
Request,
Noop,
Error,
Done,
Overrun,
MinType,
UserDefined(u16),
}
Variants§
Request
Request
Noop
No op
Error
Error
Done
End of a dump
Overrun
Data lost
MinType
minimum type, below 10 for reserved control messages
UserDefined(u16)
User defined type, passed to the user
Trait Implementations§
impl Copy for MsgType
Auto Trait Implementations§
impl Freeze for MsgType
impl RefUnwindSafe for MsgType
impl Send for MsgType
impl Sync for MsgType
impl Unpin for MsgType
impl UnwindSafe for MsgType
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