pub struct SessionFile {
pub session_id: String,
pub project: Option<String>,
pub file_path: PathBuf,
pub is_agent: bool,
pub parent_session_id: Option<String>,
}Expand description
Metadata about a session JSONL file on disk.
Fields§
§session_id: String§project: Option<String>§file_path: PathBuf§is_agent: bool§parent_session_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for SessionFile
impl RefUnwindSafe for SessionFile
impl Send for SessionFile
impl Sync for SessionFile
impl Unpin for SessionFile
impl UnsafeUnpin for SessionFile
impl UnwindSafe for SessionFile
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