pub enum ReadError {
NotIpmiV2_0,
NotEnoughData,
NotRmcpPlus,
InvalidPayloadType(u8),
DecryptionError(CryptoUnwrapError),
}Variants§
Trait Implementations§
Source§impl From<ReadError> for UnwrapSessionError
impl From<ReadError> for UnwrapSessionError
Source§fn from(value: V2_0ReadError) -> Self
fn from(value: V2_0ReadError) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for ReadError
Auto Trait Implementations§
impl Freeze for ReadError
impl RefUnwindSafe for ReadError
impl Send for ReadError
impl Sync for ReadError
impl Unpin for ReadError
impl UnwindSafe for ReadError
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