pub struct SessionSnapshotRewindData {
pub events_removed: f64,
pub up_to_event_id: String,
}Expand description
Session rewind details including target event and count of removed events
Fields§
§events_removed: f64Number of events that were removed by the rewind
up_to_event_id: StringEvent ID that was rewound to; this event and all after it were removed
Trait Implementations§
Source§impl Clone for SessionSnapshotRewindData
impl Clone for SessionSnapshotRewindData
Source§fn clone(&self) -> SessionSnapshotRewindData
fn clone(&self) -> SessionSnapshotRewindData
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 SessionSnapshotRewindData
impl Debug for SessionSnapshotRewindData
Source§impl<'de> Deserialize<'de> for SessionSnapshotRewindData
impl<'de> Deserialize<'de> for SessionSnapshotRewindData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SessionSnapshotRewindData
impl RefUnwindSafe for SessionSnapshotRewindData
impl Send for SessionSnapshotRewindData
impl Sync for SessionSnapshotRewindData
impl Unpin for SessionSnapshotRewindData
impl UnsafeUnpin for SessionSnapshotRewindData
impl UnwindSafe for SessionSnapshotRewindData
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