pub struct GetHardwareIdentifiersError {
pub source: MmcInquiryError,
}Available on crate feature
mmc only.Expand description
could not get hardware identifiers
Fields§
§source: MmcInquiryErrorTrait Implementations§
Source§impl Debug for GetHardwareIdentifiersError
impl Debug for GetHardwareIdentifiersError
Source§impl Error for GetHardwareIdentifiersError
impl Error for GetHardwareIdentifiersError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl From<MmcInquiryError> for GetHardwareIdentifiersError
impl From<MmcInquiryError> for GetHardwareIdentifiersError
Source§fn from(source: MmcInquiryError) -> Self
fn from(source: MmcInquiryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GetHardwareIdentifiersError
impl RefUnwindSafe for GetHardwareIdentifiersError
impl Send for GetHardwareIdentifiersError
impl Sync for GetHardwareIdentifiersError
impl Unpin for GetHardwareIdentifiersError
impl UnsafeUnpin for GetHardwareIdentifiersError
impl UnwindSafe for GetHardwareIdentifiersError
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