pub struct SessionReplayMetadata {
pub protocol: String,
pub session_id: String,
pub tenant_id: Option<String>,
pub target_id: String,
pub route_path: String,
pub route_params: BTreeMap<String, String>,
}Expand description
Capture metadata describing one replayable session trace.
Fields§
§protocol: String§session_id: String§tenant_id: Option<String>§target_id: String§route_path: String§route_params: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for SessionReplayMetadata
impl Clone for SessionReplayMetadata
Source§fn clone(&self) -> SessionReplayMetadata
fn clone(&self) -> SessionReplayMetadata
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 SessionReplayMetadata
impl Debug for SessionReplayMetadata
Source§impl<'de> Deserialize<'de> for SessionReplayMetadata
impl<'de> Deserialize<'de> for SessionReplayMetadata
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 SessionReplayMetadata
impl PartialEq for SessionReplayMetadata
Source§fn eq(&self, other: &SessionReplayMetadata) -> bool
fn eq(&self, other: &SessionReplayMetadata) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SessionReplayMetadata
impl Serialize for SessionReplayMetadata
impl Eq for SessionReplayMetadata
impl StructuralPartialEq for SessionReplayMetadata
Auto Trait Implementations§
impl Freeze for SessionReplayMetadata
impl RefUnwindSafe for SessionReplayMetadata
impl Send for SessionReplayMetadata
impl Sync for SessionReplayMetadata
impl Unpin for SessionReplayMetadata
impl UnsafeUnpin for SessionReplayMetadata
impl UnwindSafe for SessionReplayMetadata
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