pub struct SessionInfo {
pub session_id: String,
pub mode: SessionMode,
pub title: String,
pub command: Vec<String>,
pub cwd: PathBuf,
pub workspace_root: Option<PathBuf>,
pub started_at: OffsetDateTime,
pub status: SessionStatus,
pub external_pid: Option<u32>,
pub classification: Option<DetectedProcessClass>,
}Expand description
Session metadata.
Fields§
§session_id: StringStable session identifier.
mode: SessionModeWhether this is managed or detected.
title: StringHuman-friendly title shown in the UI.
command: Vec<String>Command line tokens.
cwd: PathBufCurrent working directory.
workspace_root: Option<PathBuf>Best-effort workspace root.
started_at: OffsetDateTimeStart timestamp.
status: SessionStatusCurrent status.
external_pid: Option<u32>External process id, if one exists.
classification: Option<DetectedProcessClass>Best-effort classification for the detected or managed command.
Trait Implementations§
Source§impl Clone for SessionInfo
impl Clone for SessionInfo
Source§fn clone(&self) -> SessionInfo
fn clone(&self) -> SessionInfo
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 SessionInfo
impl Debug for SessionInfo
Source§impl<'de> Deserialize<'de> for SessionInfo
impl<'de> Deserialize<'de> for SessionInfo
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
Source§impl PartialEq for SessionInfo
impl PartialEq for SessionInfo
Source§impl Serialize for SessionInfo
impl Serialize for SessionInfo
impl Eq for SessionInfo
impl StructuralPartialEq for SessionInfo
Auto Trait Implementations§
impl Freeze for SessionInfo
impl RefUnwindSafe for SessionInfo
impl Send for SessionInfo
impl Sync for SessionInfo
impl Unpin for SessionInfo
impl UnsafeUnpin for SessionInfo
impl UnwindSafe for SessionInfo
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