pub enum RmcpIpmiError {
NotActive,
Receive(RmcpIpmiReceiveError),
Send(RmcpIpmiSendError),
}Variants§
Trait Implementations§
Source§impl Debug for RmcpIpmiError
impl Debug for RmcpIpmiError
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.
Source§impl From<RmcpIpmiSendError> for RmcpIpmiError
impl From<RmcpIpmiSendError> for RmcpIpmiError
Source§fn from(value: RmcpIpmiSendError) -> Self
fn from(value: RmcpIpmiSendError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RmcpIpmiError
impl !RefUnwindSafe for RmcpIpmiError
impl Send for RmcpIpmiError
impl Sync for RmcpIpmiError
impl Unpin for RmcpIpmiError
impl !UnwindSafe for RmcpIpmiError
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