pub struct SessionLog {
pub session_id: String,
pub project_slug: String,
pub entries: Vec<HistoryEntry>,
}Expand description
Full parsed session.
Fields§
§session_id: String§project_slug: String§entries: Vec<HistoryEntry>Trait Implementations§
Source§impl Clone for SessionLog
impl Clone for SessionLog
Source§fn clone(&self) -> SessionLog
fn clone(&self) -> SessionLog
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 SessionLog
impl Debug for SessionLog
Auto Trait Implementations§
impl Freeze for SessionLog
impl RefUnwindSafe for SessionLog
impl Send for SessionLog
impl Sync for SessionLog
impl Unpin for SessionLog
impl UnsafeUnpin for SessionLog
impl UnwindSafe for SessionLog
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