Struct bluez_async::ParseMacAddressError
source · [−]pub struct ParseMacAddressError(_);
Expand description
An error parsing a MAC address from a string.
Trait Implementations
sourceimpl Clone for ParseMacAddressError
impl Clone for ParseMacAddressError
sourcefn clone(&self) -> ParseMacAddressError
fn clone(&self) -> ParseMacAddressError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ParseMacAddressError
impl Debug for ParseMacAddressError
sourceimpl Display for ParseMacAddressError
impl Display for ParseMacAddressError
sourceimpl Error for ParseMacAddressError
impl Error for ParseMacAddressError
1.30.0 · sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎 Deprecated since 1.42.0:
use the Display impl or to_string()
sourceimpl From<ParseMacAddressError> for BluetoothError
impl From<ParseMacAddressError> for BluetoothError
sourcefn from(source: ParseMacAddressError) -> Self
fn from(source: ParseMacAddressError) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<ParseMacAddressError> for ParseMacAddressError
impl PartialEq<ParseMacAddressError> for ParseMacAddressError
sourcefn eq(&self, other: &ParseMacAddressError) -> bool
fn eq(&self, other: &ParseMacAddressError) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &ParseMacAddressError) -> bool
fn ne(&self, other: &ParseMacAddressError) -> bool
This method tests for !=
.
impl Eq for ParseMacAddressError
impl StructuralEq for ParseMacAddressError
impl StructuralPartialEq for ParseMacAddressError
Auto Trait Implementations
impl RefUnwindSafe for ParseMacAddressError
impl Send for ParseMacAddressError
impl Sync for ParseMacAddressError
impl Unpin for ParseMacAddressError
impl UnwindSafe for ParseMacAddressError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more