pub struct HistoryClearContextResult {
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 HistoryClearContextResult
impl Clone for HistoryClearContextResult
Source§fn clone(&self) -> HistoryClearContextResult
fn clone(&self) -> HistoryClearContextResult
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 Debug for HistoryClearContextResult
impl Debug for HistoryClearContextResult
Source§impl Default for HistoryClearContextResult
impl Default for HistoryClearContextResult
Source§fn default() -> HistoryClearContextResult
fn default() -> HistoryClearContextResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoryClearContextResult
impl<'de> Deserialize<'de> for HistoryClearContextResult
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 HistoryClearContextResult
impl RefUnwindSafe for HistoryClearContextResult
impl Send for HistoryClearContextResult
impl Sync for HistoryClearContextResult
impl Unpin for HistoryClearContextResult
impl UnsafeUnpin for HistoryClearContextResult
impl UnwindSafe for HistoryClearContextResult
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