pub struct SessionHistoryClearContextResult {
pub messages_cleared: i64,
}Expand description
What a successful clear removed. A clear that could not be applied rejects instead of reporting a count.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§messages_cleared: i64Number of non-system, non-developer messages that were removed from the conversation. Zero only when the window already held no conversation.
Trait Implementations§
Source§impl Clone for SessionHistoryClearContextResult
impl Clone for SessionHistoryClearContextResult
Source§fn clone(&self) -> SessionHistoryClearContextResult
fn clone(&self) -> SessionHistoryClearContextResult
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 SessionHistoryClearContextResult
impl Default for SessionHistoryClearContextResult
Source§fn default() -> SessionHistoryClearContextResult
fn default() -> SessionHistoryClearContextResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionHistoryClearContextResult
impl<'de> Deserialize<'de> for SessionHistoryClearContextResult
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 SessionHistoryClearContextResult
impl RefUnwindSafe for SessionHistoryClearContextResult
impl Send for SessionHistoryClearContextResult
impl Sync for SessionHistoryClearContextResult
impl Unpin for SessionHistoryClearContextResult
impl UnsafeUnpin for SessionHistoryClearContextResult
impl UnwindSafe for SessionHistoryClearContextResult
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