pub struct SessionSummaryLedgerRecord {
pub session_id: String,
pub generated_at: String,
pub provider: String,
pub model: Option<String>,
pub source_kind: String,
pub generation_kind: String,
pub prompt_fingerprint: Option<String>,
pub summary: Value,
pub source_details: Value,
pub diff_tree: Vec<Value>,
pub error: Option<String>,
}Expand description
Session semantic summary payload persisted in hidden refs.
Fields§
§session_id: String§generated_at: String§provider: String§model: Option<String>§source_kind: String§generation_kind: String§prompt_fingerprint: Option<String>§summary: Value§source_details: Value§diff_tree: Vec<Value>§error: Option<String>Trait Implementations§
Source§impl Clone for SessionSummaryLedgerRecord
impl Clone for SessionSummaryLedgerRecord
Source§fn clone(&self) -> SessionSummaryLedgerRecord
fn clone(&self) -> SessionSummaryLedgerRecord
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 SessionSummaryLedgerRecord
impl Debug for SessionSummaryLedgerRecord
Source§impl<'de> Deserialize<'de> for SessionSummaryLedgerRecord
impl<'de> Deserialize<'de> for SessionSummaryLedgerRecord
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 SessionSummaryLedgerRecord
Auto Trait Implementations§
impl Freeze for SessionSummaryLedgerRecord
impl RefUnwindSafe for SessionSummaryLedgerRecord
impl Send for SessionSummaryLedgerRecord
impl Sync for SessionSummaryLedgerRecord
impl Unpin for SessionSummaryLedgerRecord
impl UnsafeUnpin for SessionSummaryLedgerRecord
impl UnwindSafe for SessionSummaryLedgerRecord
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