pub struct HistorySummarizeForHandoffResult {
pub summary: String,
}Expand description
Markdown summary of the conversation context (empty when not available).
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§summary: StringMarkdown summary of the conversation context produced by an LLM. Empty string when there are no messages or when the session does not support local summarization.
Trait Implementations§
Source§impl Clone for HistorySummarizeForHandoffResult
impl Clone for HistorySummarizeForHandoffResult
Source§fn clone(&self) -> HistorySummarizeForHandoffResult
fn clone(&self) -> HistorySummarizeForHandoffResult
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 moreSource§impl Default for HistorySummarizeForHandoffResult
impl Default for HistorySummarizeForHandoffResult
Source§fn default() -> HistorySummarizeForHandoffResult
fn default() -> HistorySummarizeForHandoffResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistorySummarizeForHandoffResult
impl<'de> Deserialize<'de> for HistorySummarizeForHandoffResult
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
Auto Trait Implementations§
impl Freeze for HistorySummarizeForHandoffResult
impl RefUnwindSafe for HistorySummarizeForHandoffResult
impl Send for HistorySummarizeForHandoffResult
impl Sync for HistorySummarizeForHandoffResult
impl Unpin for HistorySummarizeForHandoffResult
impl UnsafeUnpin for HistorySummarizeForHandoffResult
impl UnwindSafe for HistorySummarizeForHandoffResult
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