pub struct SessionLogs {
pub session_id: SessionId,
pub date: NaiveDate,
pub entries: Vec<SessionLog>,
}Fields§
§session_id: SessionId§date: NaiveDate§entries: Vec<SessionLog>Trait Implementations§
Source§impl Clone for SessionLogs
impl Clone for SessionLogs
Source§fn clone(&self) -> SessionLogs
fn clone(&self) -> SessionLogs
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 SessionLogs
impl Debug for SessionLogs
Source§impl<'de> Deserialize<'de> for SessionLogs
impl<'de> Deserialize<'de> for SessionLogs
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
impl Eq for SessionLogs
Source§impl PartialEq for SessionLogs
impl PartialEq for SessionLogs
Source§impl Serialize for SessionLogs
impl Serialize for SessionLogs
impl StructuralPartialEq for SessionLogs
Auto Trait Implementations§
impl Freeze for SessionLogs
impl RefUnwindSafe for SessionLogs
impl Send for SessionLogs
impl Sync for SessionLogs
impl Unpin for SessionLogs
impl UnsafeUnpin for SessionLogs
impl UnwindSafe for SessionLogs
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