Enum mac_address::MacAddressError
source · pub enum MacAddressError {
InternalError,
}
Expand description
Possible errors when attempting to retrieve a MAC address.
Eventually will expose more detailed error information.
Variants§
InternalError
Signifies an internal API error has occurred.
Trait Implementations§
source§impl Debug for MacAddressError
impl Debug for MacAddressError
source§impl Display for MacAddressError
impl Display for MacAddressError
source§impl Error for MacAddressError
impl Error for MacAddressError
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<Errno> for MacAddressError
impl From<Errno> for MacAddressError
source§fn from(_: Error) -> MacAddressError
fn from(_: Error) -> MacAddressError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MacAddressError
impl RefUnwindSafe for MacAddressError
impl Send for MacAddressError
impl Sync for MacAddressError
impl Unpin for MacAddressError
impl UnwindSafe for MacAddressError
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