pub struct DeliveredEvent {
pub delivery_sequence: u64,
pub event: InterpreterOutputEvent,
}Expand description
One delivered event with explicit delivery sequence.
Fields§
§delivery_sequence: u64Monotonic delivery sequence (1-based) from the distributor.
event: InterpreterOutputEventCanonical interpreter event (unit or end).
Trait Implementations§
Source§impl Clone for DeliveredEvent
impl Clone for DeliveredEvent
Source§fn clone(&self) -> DeliveredEvent
fn clone(&self) -> DeliveredEvent
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 moreAuto Trait Implementations§
impl Freeze for DeliveredEvent
impl RefUnwindSafe for DeliveredEvent
impl Send for DeliveredEvent
impl Sync for DeliveredEvent
impl Unpin for DeliveredEvent
impl UnsafeUnpin for DeliveredEvent
impl UnwindSafe for DeliveredEvent
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