pub struct SessionProcessMatch {
pub session_id: String,
pub root_pid: u32,
pub matched_pids: Vec<u32>,
pub pid_starttime_ticks: u64,
pub source: &'static str,
pub confidence: f32,
pub evidence: &'static str,
}Fields§
§session_id: String§root_pid: u32§matched_pids: Vec<u32>§pid_starttime_ticks: u64§source: &'static str§confidence: f32§evidence: &'static strTrait Implementations§
Source§impl Clone for SessionProcessMatch
impl Clone for SessionProcessMatch
Source§fn clone(&self) -> SessionProcessMatch
fn clone(&self) -> SessionProcessMatch
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for SessionProcessMatch
impl RefUnwindSafe for SessionProcessMatch
impl Send for SessionProcessMatch
impl Sync for SessionProcessMatch
impl Unpin for SessionProcessMatch
impl UnsafeUnpin for SessionProcessMatch
impl UnwindSafe for SessionProcessMatch
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