pub enum LeaseAckError {
NotFound,
NotBreaking,
StateNotAccepted,
}Expand description
Why a lease-break acknowledgment was rejected ([MS-SMB2] §3.3.5.22.1).
Variants§
NotFound
No lease matches the key/client GUID.
NotBreaking
The lease is not currently breaking.
StateNotAccepted
The acknowledged state is not a subset of the break-to state.
Auto Trait Implementations§
impl Freeze for LeaseAckError
impl RefUnwindSafe for LeaseAckError
impl Send for LeaseAckError
impl Sync for LeaseAckError
impl Unpin for LeaseAckError
impl UnsafeUnpin for LeaseAckError
impl UnwindSafe for LeaseAckError
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