Enum syd::force_action_t
source · #[repr(u8)]pub enum force_action_t {
FORCE_ALLOW = 0,
FORCE_WARN = 1,
FORCE_KILL = 2,
}Expand description
An enumeration of the possible actions for force sandboxing.
Variants§
FORCE_ALLOW = 0
Allow system call.
FORCE_WARN = 1
Print a warning to syslog.
FORCE_KILL = 2
Kill process with SIGKILL.
Auto Trait Implementations§
impl Freeze for force_action_t
impl RefUnwindSafe for force_action_t
impl Send for force_action_t
impl Sync for force_action_t
impl Unpin for force_action_t
impl UnwindSafe for force_action_t
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