pub struct PersistedSessionRead {
pub session_id: String,
pub head_revision: u64,
pub config: PersistedSessionConfig,
pub agent_frames: Vec<AgentFrameRecord>,
pub current_agent_frame_id: AgentFrameId,
pub graph: SessionGraph,
pub checkpoint_ref: Option<BlobRef>,
pub checkpoint: Option<HydratedSessionCheckpoint>,
pub token_ledger: Vec<TokenLedgerEntry>,
}Fields§
§session_id: String§head_revision: u64§config: PersistedSessionConfig§agent_frames: Vec<AgentFrameRecord>§current_agent_frame_id: AgentFrameId§graph: SessionGraph§checkpoint_ref: Option<BlobRef>§checkpoint: Option<HydratedSessionCheckpoint>§token_ledger: Vec<TokenLedgerEntry>Trait Implementations§
Source§impl Clone for PersistedSessionRead
impl Clone for PersistedSessionRead
Source§fn clone(&self) -> PersistedSessionRead
fn clone(&self) -> PersistedSessionRead
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PersistedSessionRead
impl RefUnwindSafe for PersistedSessionRead
impl Send for PersistedSessionRead
impl Sync for PersistedSessionRead
impl Unpin for PersistedSessionRead
impl UnsafeUnpin for PersistedSessionRead
impl UnwindSafe for PersistedSessionRead
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