pub struct TimelineEvent {
pub timestamp: DateTime<Utc>,
pub source: EventSource,
pub kind: TimelineEventKind,
pub verdict: NormalizedVerdict,
pub severity: Option<String>,
pub summary: String,
pub process: Option<String>,
pub namespace: Option<String>,
pub pod: Option<String>,
pub action_type: Option<String>,
pub signature_valid: Option<bool>,
pub raw: Option<Value>,
}Expand description
A single event in the reconstructed timeline.
Fields§
§timestamp: DateTime<Utc>§source: EventSource§kind: TimelineEventKind§verdict: NormalizedVerdict§severity: Option<String>§summary: String§process: Option<String>§namespace: Option<String>§pod: Option<String>§action_type: Option<String>§signature_valid: Option<bool>§raw: Option<Value>Trait Implementations§
Source§impl Clone for TimelineEvent
impl Clone for TimelineEvent
Source§fn clone(&self) -> TimelineEvent
fn clone(&self) -> TimelineEvent
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 TimelineEvent
impl Debug for TimelineEvent
Auto Trait Implementations§
impl Freeze for TimelineEvent
impl RefUnwindSafe for TimelineEvent
impl Send for TimelineEvent
impl Sync for TimelineEvent
impl Unpin for TimelineEvent
impl UnsafeUnpin for TimelineEvent
impl UnwindSafe for TimelineEvent
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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