pub struct RecentSession {
pub session_key: String,
pub session_id: String,
pub repo: String,
pub cwd: String,
pub session_timestamp: String,
pub source_file_path: PathBuf,
}Fields§
§session_key: String§session_id: String§repo: String§cwd: String§session_timestamp: String§source_file_path: PathBufTrait Implementations§
Source§impl Clone for RecentSession
impl Clone for RecentSession
Source§fn clone(&self) -> RecentSession
fn clone(&self) -> RecentSession
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 RecentSession
impl Debug for RecentSession
Source§impl PartialEq for RecentSession
impl PartialEq for RecentSession
impl Eq for RecentSession
impl StructuralPartialEq for RecentSession
Auto Trait Implementations§
impl Freeze for RecentSession
impl RefUnwindSafe for RecentSession
impl Send for RecentSession
impl Sync for RecentSession
impl Unpin for RecentSession
impl UnsafeUnpin for RecentSession
impl UnwindSafe for RecentSession
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