pub struct NormalizedWrapperEvent {
pub line_number: usize,
pub agent_kind: WrapperAgentKind,
pub kind: NormalizedEventKind,
pub context: NormalizationContext,
pub channel: Option<ValidatedChannelString>,
pub captured_raw: Option<CapturedRaw>,
}Fields§
§line_number: usize§agent_kind: WrapperAgentKind§kind: NormalizedEventKind§context: NormalizationContext§channel: Option<ValidatedChannelString>§captured_raw: Option<CapturedRaw>Trait Implementations§
Source§impl Clone for NormalizedWrapperEvent
impl Clone for NormalizedWrapperEvent
Source§fn clone(&self) -> NormalizedWrapperEvent
fn clone(&self) -> NormalizedWrapperEvent
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 NormalizedWrapperEvent
impl Debug for NormalizedWrapperEvent
Source§impl PartialEq for NormalizedWrapperEvent
impl PartialEq for NormalizedWrapperEvent
Source§fn eq(&self, other: &NormalizedWrapperEvent) -> bool
fn eq(&self, other: &NormalizedWrapperEvent) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NormalizedWrapperEvent
Auto Trait Implementations§
impl Freeze for NormalizedWrapperEvent
impl RefUnwindSafe for NormalizedWrapperEvent
impl Send for NormalizedWrapperEvent
impl Sync for NormalizedWrapperEvent
impl Unpin for NormalizedWrapperEvent
impl UnsafeUnpin for NormalizedWrapperEvent
impl UnwindSafe for NormalizedWrapperEvent
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