pub enum LiveReplayResult {
Replayed(Vec<SessionObservationEvent>),
Gap(LiveReplayGapReason),
}Variants§
Replayed(Vec<SessionObservationEvent>)
Gap(LiveReplayGapReason)
Trait Implementations§
Source§impl Clone for LiveReplayResult
impl Clone for LiveReplayResult
Source§fn clone(&self) -> LiveReplayResult
fn clone(&self) -> LiveReplayResult
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 LiveReplayResult
impl RefUnwindSafe for LiveReplayResult
impl Send for LiveReplayResult
impl Sync for LiveReplayResult
impl Unpin for LiveReplayResult
impl UnsafeUnpin for LiveReplayResult
impl UnwindSafe for LiveReplayResult
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