pub struct SessionReplayTrace {
pub format_version: String,
pub captured_at_unix_ms: u64,
pub metadata: SessionReplayMetadata,
pub redaction: TraceRedactionSummary,
pub steps: Vec<SessionReplayTraceStep>,
}Expand description
Serializable replay artifact.
Fields§
§format_version: String§captured_at_unix_ms: u64§metadata: SessionReplayMetadata§redaction: TraceRedactionSummary§steps: Vec<SessionReplayTraceStep>Implementations§
Trait Implementations§
Source§impl Clone for SessionReplayTrace
impl Clone for SessionReplayTrace
Source§fn clone(&self) -> SessionReplayTrace
fn clone(&self) -> SessionReplayTrace
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 SessionReplayTrace
impl Debug for SessionReplayTrace
Source§impl<'de> Deserialize<'de> for SessionReplayTrace
impl<'de> Deserialize<'de> for SessionReplayTrace
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 SessionReplayTrace
impl PartialEq for SessionReplayTrace
Source§fn eq(&self, other: &SessionReplayTrace) -> bool
fn eq(&self, other: &SessionReplayTrace) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionReplayTrace
impl Serialize for SessionReplayTrace
impl StructuralPartialEq for SessionReplayTrace
Auto Trait Implementations§
impl Freeze for SessionReplayTrace
impl RefUnwindSafe for SessionReplayTrace
impl Send for SessionReplayTrace
impl Sync for SessionReplayTrace
impl Unpin for SessionReplayTrace
impl UnsafeUnpin for SessionReplayTrace
impl UnwindSafe for SessionReplayTrace
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