pub struct Error { /* private fields */ }
Expand description
D-Bus Error wrapper.
This is a wrapper around the libc dbus error object.
Implementations
Trait Implementations
sourceimpl Error for Error
impl Error for Error
sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
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
sourceimpl From<TypeMismatchError> for Error
impl From<TypeMismatchError> for Error
sourcefn from(t: TypeMismatchError) -> Error
fn from(t: TypeMismatchError) -> Error
Converts to this type from the input type.
impl Send for Error
impl Sync for Error
Auto Trait Implementations
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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