pub struct ActivateSession {
pub auth_type: AuthType,
pub maxiumum_privilege_level: PrivilegeLevel,
pub challenge_string: [u8; 16],
pub initial_sequence_number: u32,
}Fields§
§auth_type: AuthType§maxiumum_privilege_level: PrivilegeLevel§challenge_string: [u8; 16]§initial_sequence_number: u32Trait Implementations§
Source§impl Clone for ActivateSession
impl Clone for ActivateSession
Source§fn clone(&self) -> ActivateSession
fn clone(&self) -> ActivateSession
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ActivateSession
impl Debug for ActivateSession
Source§impl From<ActivateSession> for Message
impl From<ActivateSession> for Message
Source§fn from(value: ActivateSession) -> Self
fn from(value: ActivateSession) -> Self
Converts to this type from the input type.
Source§impl IpmiCommand for ActivateSession
impl IpmiCommand for ActivateSession
type Output = BeginSessionInfo
type Error = AuthError
fn parse_response( completion_code: CompletionCode, data: &[u8], ) -> Result<Self::Output, ParseResponseError<Self::Error>>
fn check_cc_success( cc: CompletionCode, ) -> Result<(), ParseResponseError<Self::Error>>
fn target(&self) -> Option<(Address, Channel)>
Auto Trait Implementations§
impl Freeze for ActivateSession
impl RefUnwindSafe for ActivateSession
impl Send for ActivateSession
impl Sync for ActivateSession
impl Unpin for ActivateSession
impl UnwindSafe for ActivateSession
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