pub struct SessionDetails {
pub summary: SessionSummary,
pub events: Vec<SessionEvent>,
}Expand description
Detailed session information including all events
Fields§
§summary: SessionSummarySummary information
events: Vec<SessionEvent>All events in the session
Trait Implementations§
Source§impl Clone for SessionDetails
impl Clone for SessionDetails
Source§fn clone(&self) -> SessionDetails
fn clone(&self) -> SessionDetails
Returns a duplicate of the value. Read more
1.0.0 · 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 SessionDetails
impl Debug for SessionDetails
Source§impl<'de> Deserialize<'de> for SessionDetails
impl<'de> Deserialize<'de> for SessionDetails
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 SessionDetails
impl RefUnwindSafe for SessionDetails
impl Send for SessionDetails
impl Sync for SessionDetails
impl Unpin for SessionDetails
impl UnsafeUnpin for SessionDetails
impl UnwindSafe for SessionDetails
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