pub enum EventInspection {
Known(EventEnvelope),
UnknownSkippable(UnknownSkippableEvent),
}Expand description
Result of inspecting a known or forward-compatible observable event.
Variants§
Known(EventEnvelope)
A fully understood typed event.
UnknownSkippable(UnknownSkippableEvent)
An explicitly skippable unknown observational event.
Trait Implementations§
Source§impl Clone for EventInspection
impl Clone for EventInspection
Source§fn clone(&self) -> EventInspection
fn clone(&self) -> EventInspection
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 EventInspection
impl Debug for EventInspection
Source§impl PartialEq for EventInspection
impl PartialEq for EventInspection
impl StructuralPartialEq for EventInspection
Auto Trait Implementations§
impl Freeze for EventInspection
impl RefUnwindSafe for EventInspection
impl Send for EventInspection
impl Sync for EventInspection
impl Unpin for EventInspection
impl UnsafeUnpin for EventInspection
impl UnwindSafe for EventInspection
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