pub struct SyscallEvent {
pub syscall: String,
pub denied: bool,
pub raw_line: String,
}Expand description
A single detected syscall event parsed from command output.
Fields§
§syscall: String§denied: bool§raw_line: StringTrait Implementations§
Source§impl Clone for SyscallEvent
impl Clone for SyscallEvent
Source§fn clone(&self) -> SyscallEvent
fn clone(&self) -> SyscallEvent
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 SyscallEvent
impl Debug for SyscallEvent
Source§impl PartialEq for SyscallEvent
impl PartialEq for SyscallEvent
impl Eq for SyscallEvent
impl StructuralPartialEq for SyscallEvent
Auto Trait Implementations§
impl Freeze for SyscallEvent
impl RefUnwindSafe for SyscallEvent
impl Send for SyscallEvent
impl Sync for SyscallEvent
impl Unpin for SyscallEvent
impl UnsafeUnpin for SyscallEvent
impl UnwindSafe for SyscallEvent
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