pub struct DisplayReplayWindow {
pub scope: ReplayScope,
pub events: Vec<ReplayEvent>,
pub next_sequence: usize,
}Expand description
Display replay events and the next sequence for live tail continuation.
Fields§
§scope: ReplayScopeReplay scope used by the events.
events: Vec<ReplayEvent>Replay events after the requested cursor.
next_sequence: usizeNext sequence number for live events in this scope.
Trait Implementations§
Source§impl Clone for DisplayReplayWindow
impl Clone for DisplayReplayWindow
Source§fn clone(&self) -> DisplayReplayWindow
fn clone(&self) -> DisplayReplayWindow
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 DisplayReplayWindow
impl RefUnwindSafe for DisplayReplayWindow
impl Send for DisplayReplayWindow
impl Sync for DisplayReplayWindow
impl Unpin for DisplayReplayWindow
impl UnsafeUnpin for DisplayReplayWindow
impl UnwindSafe for DisplayReplayWindow
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