pub struct DiscoveredSession {
pub path: PathBuf,
pub session_id: String,
pub workspace_storage_id: String,
}Expand description
Discovered session file with metadata
Fields§
§path: PathBufPath to the session JSON file
session_id: StringSession ID (from filename)
workspace_storage_id: StringWorkspace storage ID
Trait Implementations§
Source§impl Clone for DiscoveredSession
impl Clone for DiscoveredSession
Source§fn clone(&self) -> DiscoveredSession
fn clone(&self) -> DiscoveredSession
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 moreAuto Trait Implementations§
impl Freeze for DiscoveredSession
impl RefUnwindSafe for DiscoveredSession
impl Send for DiscoveredSession
impl Sync for DiscoveredSession
impl Unpin for DiscoveredSession
impl UnwindSafe for DiscoveredSession
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