pub struct Session {
pub id: String,
pub slug: String,
pub project_id: String,
pub directory: String,
pub time: SessionTime,
pub title: String,
pub version: String,
pub parent_id: Option<String>,
pub revert: Option<SessionRevert>,
pub share: Option<SessionShare>,
pub summary: Option<SessionSummary>,
pub permission: Option<PermissionRuleset>,
}Expand description
A conversation session.
Fields§
§id: StringUnique session identifier.
slug: StringURL-friendly session slug.
project_id: StringProject identifier.
directory: StringWorking directory for this session.
time: SessionTimeTiming information.
title: StringHuman-readable session title.
version: StringSession schema version.
parent_id: Option<String>Parent session identifier (for branched sessions).
revert: Option<SessionRevert>Revert metadata, if the session was reverted.
Share metadata, if the session was shared.
summary: Option<SessionSummary>Summary of changes in this session.
permission: Option<PermissionRuleset>Permission rules for this session.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Session
impl<'de> Deserialize<'de> for Session
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
impl StructuralPartialEq for Session
Auto Trait Implementations§
impl Freeze for Session
impl RefUnwindSafe for Session
impl Send for Session
impl Sync for Session
impl Unpin for Session
impl UnwindSafe for Session
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