pub struct GetSelEntry { /* private fields */ }Implementations§
Trait Implementations§
Source§impl IpmiCommand for GetEntry
impl IpmiCommand for GetEntry
Source§type Error = ParseEntryError
type Error = ParseEntryError
The type of error that can occur while parsing the response for this
command.
Source§fn parse_success_response(
data: &[u8],
) -> Result<<GetEntry as IpmiCommand>::Output, <GetEntry as IpmiCommand>::Error>
fn parse_success_response( data: &[u8], ) -> Result<<GetEntry as IpmiCommand>::Output, <GetEntry as IpmiCommand>::Error>
Try to parse the expected response for this command from the
provided
data, assuming a successful completion code.Source§fn handle_completion_code(
completion_code: CompletionErrorCode,
data: &[u8],
) -> Option<Self::Error>
fn handle_completion_code( completion_code: CompletionErrorCode, data: &[u8], ) -> Option<Self::Error>
Handle the provided completion code
completion_code and optionally provide
a special error in case of failure. Read moreimpl StructuralPartialEq for GetEntry
Auto Trait Implementations§
impl Freeze for GetEntry
impl RefUnwindSafe for GetEntry
impl Send for GetEntry
impl Sync for GetEntry
impl Unpin for GetEntry
impl UnwindSafe for GetEntry
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