pub struct ContextArchiveRef {
pub seq: u64,
pub archive_ref: String,
pub summary: String,
pub token_count: u32,
}Expand description
Reference to an archived context segment in external storage.
Fields§
§seq: u64§archive_ref: String§summary: String§token_count: u32Trait Implementations§
Source§impl Clone for ContextArchiveRef
impl Clone for ContextArchiveRef
Source§fn clone(&self) -> ContextArchiveRef
fn clone(&self) -> ContextArchiveRef
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 ContextArchiveRef
impl Debug for ContextArchiveRef
Source§impl<'de> Deserialize<'de> for ContextArchiveRef
impl<'de> Deserialize<'de> for ContextArchiveRef
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 ContextArchiveRef
impl RefUnwindSafe for ContextArchiveRef
impl Send for ContextArchiveRef
impl Sync for ContextArchiveRef
impl Unpin for ContextArchiveRef
impl UnsafeUnpin for ContextArchiveRef
impl UnwindSafe for ContextArchiveRef
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