pub struct EventQueryResult {
pub events: Vec<Event>,
pub corrupted: Vec<CorruptedEvent>,
pub total_processed: usize,
}Expand description
Result of an event query.
Fields§
§events: Vec<Event>Events returned by query
corrupted: Vec<CorruptedEvent>Corrupted events encountered during query
total_processed: usizeTotal events processed (including corrupted)
Trait Implementations§
Source§impl Clone for EventQueryResult
impl Clone for EventQueryResult
Source§fn clone(&self) -> EventQueryResult
fn clone(&self) -> EventQueryResult
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 EventQueryResult
impl Debug for EventQueryResult
Source§impl Default for EventQueryResult
impl Default for EventQueryResult
Source§fn default() -> EventQueryResult
fn default() -> EventQueryResult
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EventQueryResult
impl RefUnwindSafe for EventQueryResult
impl Send for EventQueryResult
impl Sync for EventQueryResult
impl Unpin for EventQueryResult
impl UnsafeUnpin for EventQueryResult
impl UnwindSafe for EventQueryResult
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