pub enum LinkDeviceError {
NlError(NlError),
NlSerError(SerError),
InvalidInterfaceName,
AccessError,
}
Variants§
Trait Implementations§
Source§impl Debug for LinkDeviceError
impl Debug for LinkDeviceError
Source§impl Display for LinkDeviceError
impl Display for LinkDeviceError
Source§impl Error for LinkDeviceError
impl Error for LinkDeviceError
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<Error> for LinkDeviceError
impl From<Error> for LinkDeviceError
Source§impl From<NlError> for LinkDeviceError
impl From<NlError> for LinkDeviceError
Auto Trait Implementations§
impl Freeze for LinkDeviceError
impl !RefUnwindSafe for LinkDeviceError
impl Send for LinkDeviceError
impl Sync for LinkDeviceError
impl Unpin for LinkDeviceError
impl !UnwindSafe for LinkDeviceError
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