pub enum RmcpIpmiReceiveError {
Io(Error),
RmcpHeader(RmcpHeaderError),
Session(UnwrapSessionError),
NotIpmi,
NotEnoughData,
EmptyMessage,
IpmbChecksumFailed,
}Variants§
Io(Error)
RmcpHeader(RmcpHeaderError)
Session(UnwrapSessionError)
NotIpmi
NotEnoughData
EmptyMessage
IpmbChecksumFailed
Trait Implementations§
Source§impl Debug for RmcpIpmiReceiveError
impl Debug for RmcpIpmiReceiveError
Source§impl From<RmcpIpmiReceiveError> for RmcpIpmiError
impl From<RmcpIpmiReceiveError> for RmcpIpmiError
Source§fn from(value: RmcpIpmiReceiveError) -> Self
fn from(value: RmcpIpmiReceiveError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RmcpIpmiReceiveError
impl !RefUnwindSafe for RmcpIpmiReceiveError
impl Send for RmcpIpmiReceiveError
impl Sync for RmcpIpmiReceiveError
impl Unpin for RmcpIpmiReceiveError
impl !UnwindSafe for RmcpIpmiReceiveError
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