pub struct FilterInput {
pub event_type: String,
pub pid: u32,
pub tid: u32,
pub timestamp: u64,
pub comm: String,
pub stack_trace: Vec<u64>,
pub event_data: String,
}Expand description
Filter input containing event data
Fields§
§event_type: StringEvent type (cpu, lock, syscall)
pid: u32Process ID
tid: u32Thread ID
timestamp: u64Timestamp (nanoseconds)
comm: StringProcess name
stack_trace: Vec<u64>Stack trace (instruction pointers)
event_data: StringEvent-specific data (JSON)
Trait Implementations§
Source§impl Clone for FilterInput
impl Clone for FilterInput
Source§fn clone(&self) -> FilterInput
fn clone(&self) -> FilterInput
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 moreSource§impl Debug for FilterInput
impl Debug for FilterInput
Source§impl<'de> Deserialize<'de> for FilterInput
impl<'de> Deserialize<'de> for FilterInput
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
Auto Trait Implementations§
impl Freeze for FilterInput
impl RefUnwindSafe for FilterInput
impl Send for FilterInput
impl Sync for FilterInput
impl Unpin for FilterInput
impl UnsafeUnpin for FilterInput
impl UnwindSafe for FilterInput
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