pub struct MmcCloseTrayError {
pub source: MmcStartStopError,
}Available on crate feature
mmc only.Expand description
could not close tray of the MMC device
Fields§
§source: MmcStartStopErrorTrait Implementations§
Source§impl Debug for MmcCloseTrayError
impl Debug for MmcCloseTrayError
Source§impl Display for MmcCloseTrayError
impl Display for MmcCloseTrayError
Source§impl Error for MmcCloseTrayError
impl Error for MmcCloseTrayError
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 MmcCloseTrayError
impl From<MmcStartStopError> for MmcCloseTrayError
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 MmcCloseTrayError
impl RefUnwindSafe for MmcCloseTrayError
impl Send for MmcCloseTrayError
impl Sync for MmcCloseTrayError
impl Unpin for MmcCloseTrayError
impl UnsafeUnpin for MmcCloseTrayError
impl UnwindSafe for MmcCloseTrayError
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