pub enum SeccompAction {
ScmpActAllow,
ScmpActErrno,
ScmpActKill,
ScmpActTrace,
ScmpActTrap,
}
Variants§
Trait Implementations§
Source§impl Clone for SeccompAction
impl Clone for SeccompAction
Source§fn clone(&self) -> SeccompAction
fn clone(&self) -> SeccompAction
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SeccompAction
impl Debug for SeccompAction
Source§impl<'de> Deserialize<'de> for SeccompAction
impl<'de> Deserialize<'de> for SeccompAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SeccompAction
impl PartialEq for SeccompAction
Source§impl Serialize for SeccompAction
impl Serialize for SeccompAction
impl StructuralPartialEq for SeccompAction
Auto Trait Implementations§
impl Freeze for SeccompAction
impl RefUnwindSafe for SeccompAction
impl Send for SeccompAction
impl Sync for SeccompAction
impl Unpin for SeccompAction
impl UnwindSafe for SeccompAction
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