pub struct LoadedEvents {
pub events: Vec<AgentEvent>,
pub source_versions: BTreeSet<u32>,
}Expand description
Events read from a versioned log, including the source versions observed.
Fields§
§events: Vec<AgentEvent>§source_versions: BTreeSet<u32>Trait Implementations§
Source§impl Clone for LoadedEvents
impl Clone for LoadedEvents
Source§fn clone(&self) -> LoadedEvents
fn clone(&self) -> LoadedEvents
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 LoadedEvents
impl Debug for LoadedEvents
impl Eq for LoadedEvents
Source§impl PartialEq for LoadedEvents
impl PartialEq for LoadedEvents
impl StructuralPartialEq for LoadedEvents
Auto Trait Implementations§
impl Freeze for LoadedEvents
impl RefUnwindSafe for LoadedEvents
impl Send for LoadedEvents
impl Sync for LoadedEvents
impl Unpin for LoadedEvents
impl UnsafeUnpin for LoadedEvents
impl UnwindSafe for LoadedEvents
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