pub enum SendSinglePacketWriteOutcome {
Written(SendSinglePacketDispatch),
Rejected {
rejection: SendSinglePacketWriteRejection,
unspent_entropy: SendSinglePacketEntropy,
},
Failed {
failure: EncryptError,
},
}Variants§
Auto Trait Implementations§
impl Freeze for SendSinglePacketWriteOutcome
impl RefUnwindSafe for SendSinglePacketWriteOutcome
impl Send for SendSinglePacketWriteOutcome
impl Sync for SendSinglePacketWriteOutcome
impl Unpin for SendSinglePacketWriteOutcome
impl UnsafeUnpin for SendSinglePacketWriteOutcome
impl UnwindSafe for SendSinglePacketWriteOutcome
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