pub struct TouchingSession {
pub session_id: String,
pub tool: String,
pub title: String,
pub project: String,
pub started: Option<i64>,
pub ended: Option<i64>,
pub archived: bool,
}Fields§
§session_id: String§tool: String§title: String§project: String§started: Option<i64>§ended: Option<i64>§archived: boolTrait Implementations§
Source§impl Clone for TouchingSession
impl Clone for TouchingSession
Source§fn clone(&self) -> TouchingSession
fn clone(&self) -> TouchingSession
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 TouchingSession
impl Debug for TouchingSession
Source§impl PartialEq for TouchingSession
impl PartialEq for TouchingSession
impl StructuralPartialEq for TouchingSession
Auto Trait Implementations§
impl Freeze for TouchingSession
impl RefUnwindSafe for TouchingSession
impl Send for TouchingSession
impl Sync for TouchingSession
impl Unpin for TouchingSession
impl UnsafeUnpin for TouchingSession
impl UnwindSafe for TouchingSession
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