pub enum V1_5WriteError {
Io(Error),
MissingPassword,
PayloadTooLarge(usize),
UnsupportedAuthType(AuthType),
}Variants§
Io(Error)
MissingPassword
A request was made to calculate the auth code for a message authenticated using a method that requires a password, but no password was provided.
PayloadTooLarge(usize)
The payload length of for the V1_5 packet is larger than the maximum allowed size (256 bytes).
UnsupportedAuthType(AuthType)
The requested auth type is not supported.
Trait Implementations§
Source§impl Debug for WriteError
impl Debug for WriteError
Source§impl From<WriteError> for RmcpIpmiSendError
impl From<WriteError> for RmcpIpmiSendError
Source§fn from(value: V1_5WriteError) -> Self
fn from(value: V1_5WriteError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for WriteError
impl !RefUnwindSafe for WriteError
impl Send for WriteError
impl Sync for WriteError
impl Unpin for WriteError
impl !UnwindSafe for WriteError
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