pub enum ActivationError {
Show 19 variants
Io(Error),
InvalidKeyExchangeAuthCodeLen(usize, AuthenticationAlgorithm),
OpenSessionRequestSend(WriteError),
OpenSessionResponseReceive(RmcpIpmiReceiveError),
OpenSessionResponseRead(UnwrapSessionError),
OpenSessionResponseParse(ParseSessionResponseError),
OpenSessionResponseValidate(ValidateSessionResponseError),
SendRakpMessage1(WriteError),
RakpMessage2Receive(RmcpIpmiReceiveError),
RakpMessage2Read(UnwrapSessionError),
RakpMessage2Parse(RakpMessage2ParseError),
RakpMessage2Validate(ValidateRakpMessage2Error),
RakpMessage3Send(WriteError),
RakpMessage4Receive(RmcpIpmiReceiveError),
RakpMessage4Read(UnwrapSessionError),
RakpMessage4Parse(RakpMessage4ParseError),
RakpMessage4Validate(ValidateRakpMessage4Error),
RakpMessage4InvalidIntegrityCheckValue,
ServerAuthenticationFailed,
}Variants§
Io(Error)
InvalidKeyExchangeAuthCodeLen(usize, AuthenticationAlgorithm)
OpenSessionRequestSend(WriteError)
OpenSessionResponseReceive(RmcpIpmiReceiveError)
OpenSessionResponseRead(UnwrapSessionError)
OpenSessionResponseParse(ParseSessionResponseError)
OpenSessionResponseValidate(ValidateSessionResponseError)
SendRakpMessage1(WriteError)
RakpMessage2Receive(RmcpIpmiReceiveError)
RakpMessage2Read(UnwrapSessionError)
RakpMessage2Parse(RakpMessage2ParseError)
RakpMessage2Validate(ValidateRakpMessage2Error)
RakpMessage3Send(WriteError)
RakpMessage4Receive(RmcpIpmiReceiveError)
RakpMessage4Read(UnwrapSessionError)
RakpMessage4Parse(RakpMessage4ParseError)
RakpMessage4Validate(ValidateRakpMessage4Error)
RakpMessage4InvalidIntegrityCheckValue
ServerAuthenticationFailed
Trait Implementations§
Source§impl Debug for ActivationError
impl Debug for ActivationError
Source§impl From<ActivationError> for ActivationError
impl From<ActivationError> for ActivationError
Source§fn from(value: V2_0ActivationError) -> Self
fn from(value: V2_0ActivationError) -> Self
Converts to this type from the input type.
Source§impl From<ParseSessionResponseError> for ActivationError
impl From<ParseSessionResponseError> for ActivationError
Source§fn from(value: ParseSessionResponseError) -> Self
fn from(value: ParseSessionResponseError) -> Self
Converts to this type from the input type.
Source§impl From<ValidateRakpMessage2Error> for ActivationError
impl From<ValidateRakpMessage2Error> for ActivationError
Source§fn from(value: ValidateRakpMessage2Error) -> Self
fn from(value: ValidateRakpMessage2Error) -> Self
Converts to this type from the input type.
Source§impl From<ValidateRakpMessage4Error> for ActivationError
impl From<ValidateRakpMessage4Error> for ActivationError
Source§fn from(value: ValidateRakpMessage4Error) -> Self
fn from(value: ValidateRakpMessage4Error) -> Self
Converts to this type from the input type.
Source§impl From<ValidateSessionResponseError> for ActivationError
impl From<ValidateSessionResponseError> for ActivationError
Source§fn from(value: ValidateSessionResponseError) -> Self
fn from(value: ValidateSessionResponseError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ActivationError
impl !RefUnwindSafe for ActivationError
impl Send for ActivationError
impl Sync for ActivationError
impl Unpin for ActivationError
impl !UnwindSafe for ActivationError
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