pub struct MmcSetPowerStateError {
pub source: MmcStartStopError,
}Available on crate feature
mmc only.Expand description
could not set power state of MMC device
Fields§
§source: MmcStartStopErrorTrait Implementations§
Source§impl Debug for MmcSetPowerStateError
impl Debug for MmcSetPowerStateError
Source§impl Display for MmcSetPowerStateError
impl Display for MmcSetPowerStateError
Source§impl Error for MmcSetPowerStateError
impl Error for MmcSetPowerStateError
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<MmcStartStopError> for MmcSetPowerStateError
impl From<MmcStartStopError> for MmcSetPowerStateError
Source§fn from(source: MmcStartStopError) -> Self
fn from(source: MmcStartStopError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MmcSetPowerStateError
impl RefUnwindSafe for MmcSetPowerStateError
impl Send for MmcSetPowerStateError
impl Sync for MmcSetPowerStateError
impl Unpin for MmcSetPowerStateError
impl UnsafeUnpin for MmcSetPowerStateError
impl UnwindSafe for MmcSetPowerStateError
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