pub struct Violation {
pub effect: u32,
pub blocked: bool,
pub killed: bool,
pub comm: String,
pub pid: i32,
pub ppid: i32,
pub target: String,
pub rule_id: u32,
pub label: u64,
pub timestamp_ns: u64,
}Expand description
A policy violation reported by the kernel.
Fields§
§effect: u32§blocked: bool§killed: bool§comm: String§pid: i32§ppid: i32§target: String§rule_id: u32§label: u64§timestamp_ns: u64Trait Implementations§
Auto Trait Implementations§
impl Freeze for Violation
impl RefUnwindSafe for Violation
impl Send for Violation
impl Sync for Violation
impl Unpin for Violation
impl UnsafeUnpin for Violation
impl UnwindSafe for Violation
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