pub enum SeccompError {
FilterInstall(String),
Notif(NotifError),
}Variants§
FilterInstall(String)
Notif(NotifError)
Trait Implementations§
Source§impl Debug for SeccompError
impl Debug for SeccompError
Source§impl Display for SeccompError
impl Display for SeccompError
Source§impl Error for SeccompError
impl Error for SeccompError
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<NotifError> for SeccompError
impl From<NotifError> for SeccompError
Source§fn from(source: NotifError) -> Self
fn from(source: NotifError) -> Self
Converts to this type from the input type.
Source§impl From<SeccompError> for ConfinementError
impl From<SeccompError> for ConfinementError
Source§fn from(source: SeccompError) -> Self
fn from(source: SeccompError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for SeccompError
impl !RefUnwindSafe for SeccompError
impl Send for SeccompError
impl Sync for SeccompError
impl Unpin for SeccompError
impl UnsafeUnpin for SeccompError
impl !UnwindSafe for SeccompError
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