pub struct ProcessedEventsWithWaves {
pub processed: ProcessedEvents,
pub wave_events: Vec<Event>,
}Expand description
Result of processing events from JSONL with wave events partitioned out.
Fields§
§processed: ProcessedEventsNormal event processing results.
wave_events: Vec<Event>Wave events extracted before normal processing (have wave_id set).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ProcessedEventsWithWaves
impl RefUnwindSafe for ProcessedEventsWithWaves
impl Send for ProcessedEventsWithWaves
impl Sync for ProcessedEventsWithWaves
impl Unpin for ProcessedEventsWithWaves
impl UnsafeUnpin for ProcessedEventsWithWaves
impl UnwindSafe for ProcessedEventsWithWaves
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