pub struct SessionInfo {
pub session_id: String,
pub provider: String,
pub model: String,
pub created_at: String,
pub provider_session_id: Option<String>,
pub worktree_path: Option<String>,
pub sandbox_name: Option<String>,
pub log_completeness: String,
pub name: Option<String>,
pub description: Option<String>,
pub tags: Vec<String>,
}Expand description
Public session info struct for programmatic API consumers.
Fields§
§session_id: String§provider: String§model: String§created_at: String§provider_session_id: Option<String>§worktree_path: Option<String>§sandbox_name: Option<String>§log_completeness: String§name: Option<String>§description: Option<String>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 From<&SessionEntry> for SessionInfo
impl From<&SessionEntry> for SessionInfo
Source§fn from(e: &SessionEntry) -> Self
fn from(e: &SessionEntry) -> Self
Converts to this type from the input type.
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