pub struct SessionReplayTraceStep {
pub sequence: u64,
pub recorded_at_unix_ms: u64,
pub revision_before: u64,
pub revision_after: u64,
pub client_message: ClientMessage,
pub server_messages: Vec<ServerMessage>,
}Expand description
One deterministic turn in a replay trace.
Fields§
§sequence: u64§recorded_at_unix_ms: u64§revision_before: u64§revision_after: u64§client_message: ClientMessage§server_messages: Vec<ServerMessage>Trait Implementations§
Source§impl Clone for SessionReplayTraceStep
impl Clone for SessionReplayTraceStep
Source§fn clone(&self) -> SessionReplayTraceStep
fn clone(&self) -> SessionReplayTraceStep
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 SessionReplayTraceStep
impl Debug for SessionReplayTraceStep
Source§impl<'de> Deserialize<'de> for SessionReplayTraceStep
impl<'de> Deserialize<'de> for SessionReplayTraceStep
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
Source§impl PartialEq for SessionReplayTraceStep
impl PartialEq for SessionReplayTraceStep
Source§fn eq(&self, other: &SessionReplayTraceStep) -> bool
fn eq(&self, other: &SessionReplayTraceStep) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionReplayTraceStep
impl Serialize for SessionReplayTraceStep
impl StructuralPartialEq for SessionReplayTraceStep
Auto Trait Implementations§
impl Freeze for SessionReplayTraceStep
impl RefUnwindSafe for SessionReplayTraceStep
impl Send for SessionReplayTraceStep
impl Sync for SessionReplayTraceStep
impl Unpin for SessionReplayTraceStep
impl UnsafeUnpin for SessionReplayTraceStep
impl UnwindSafe for SessionReplayTraceStep
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