pub struct EvidenceEvent {
pub sequence: u64,
pub kind: Symbol,
pub summary: String,
}Expand description
One replayable evidence event.
Fields§
§sequence: u64Sequence number in the cassette.
kind: SymbolDevEnvelope kind.
summary: StringText summary extracted from the payload when available.
Trait Implementations§
Source§impl Clone for EvidenceEvent
impl Clone for EvidenceEvent
Source§fn clone(&self) -> EvidenceEvent
fn clone(&self) -> EvidenceEvent
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 EvidenceEvent
impl Debug for EvidenceEvent
impl Eq for EvidenceEvent
Source§impl PartialEq for EvidenceEvent
impl PartialEq for EvidenceEvent
impl StructuralPartialEq for EvidenceEvent
Auto Trait Implementations§
impl Freeze for EvidenceEvent
impl RefUnwindSafe for EvidenceEvent
impl Send for EvidenceEvent
impl Sync for EvidenceEvent
impl Unpin for EvidenceEvent
impl UnsafeUnpin for EvidenceEvent
impl UnwindSafe for EvidenceEvent
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