pub enum Error {
Backend(String),
Unsupported(&'static str),
MissingCapability(&'static str),
Parse(String),
NotFound(String),
Io(Error),
}Expand description
Crate-wide error type. Backends wrap their own errors in Error::Backend.
Variants§
Backend(String)
An error from a backend (netlink, D-Bus, shell-out, etc.).
Unsupported(&'static str)
The requested operation is not supported on this platform or by the current backend.
MissingCapability(&'static str)
The operation requires a capability (e.g. CAP_NET_RAW) that is absent.
Parse(String)
A parsing failure (e.g. malformed JSON from nft, unexpected kernel
attribute layout).
NotFound(String)
A requested resource (interface, route, DNS answer, etc.) was not found.
Io(Error)
Wrapped std::io::Error.
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnsafeUnpin for Error
impl !UnwindSafe for Error
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