pub enum RemoteSessionObservationStreamItem {
Event(RemoteSessionObservationEvent),
Gap {
observation: RemoteSessionObservation,
gap: RemoteLiveReplayGap,
},
}Variants§
Event(RemoteSessionObservationEvent)
A replayed or live session observation event encoded as remote DTOs.
Gap
A recoverable replay gap with a fresh remote observation snapshot.
Trait Implementations§
Source§impl Clone for RemoteSessionObservationStreamItem
impl Clone for RemoteSessionObservationStreamItem
Source§fn clone(&self) -> RemoteSessionObservationStreamItem
fn clone(&self) -> RemoteSessionObservationStreamItem
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 RemoteSessionObservationStreamItem
impl RefUnwindSafe for RemoteSessionObservationStreamItem
impl Send for RemoteSessionObservationStreamItem
impl Sync for RemoteSessionObservationStreamItem
impl Unpin for RemoteSessionObservationStreamItem
impl UnsafeUnpin for RemoteSessionObservationStreamItem
impl UnwindSafe for RemoteSessionObservationStreamItem
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