pub(crate) enum IoctlReply {
Reply(Status, Vec<u8>),
Silent,
}Expand description
The outcome of an IOCTL: either a reply body to encode, or silence because the connection is being terminated ([MS-SMB2] §3.3.5.15.12).
Variants§
Auto Trait Implementations§
impl Freeze for IoctlReply
impl RefUnwindSafe for IoctlReply
impl Send for IoctlReply
impl Sync for IoctlReply
impl Unpin for IoctlReply
impl UnsafeUnpin for IoctlReply
impl UnwindSafe for IoctlReply
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