pub struct ContextItem {Show 17 fields
pub id: String,
pub payload: Payload,
pub mime_type: String,
pub role: Role,
pub sources: Vec<SourceRef>,
pub content_hash: String,
pub trust: Trust,
pub sensitivity: Sensitivity,
pub retention: Retention,
pub priority: f64,
pub created_at: DateTime<Utc>,
pub expires_at: Option<DateTime<Utc>>,
pub parent_ids: Vec<String>,
pub merged_from_ids: Vec<String>,
pub metadata: Map<String, Value>,
pub truncatable: bool,
pub min_tokens: u64,
}Expand description
Canonical in-memory context record shared by native extensions.
Fields§
§id: String§payload: Payload§mime_type: String§role: Role§sources: Vec<SourceRef>§content_hash: String§trust: Trust§sensitivity: Sensitivity§retention: Retention§priority: f64§created_at: DateTime<Utc>§expires_at: Option<DateTime<Utc>>§parent_ids: Vec<String>§merged_from_ids: Vec<String>§metadata: Map<String, Value>§truncatable: bool§min_tokens: u64Trait Implementations§
Source§impl Clone for ContextItem
impl Clone for ContextItem
Source§fn clone(&self) -> ContextItem
fn clone(&self) -> ContextItem
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 ContextItem
impl Debug for ContextItem
Source§impl<'de> Deserialize<'de> for ContextItem
impl<'de> Deserialize<'de> for ContextItem
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
Source§impl PartialEq for ContextItem
impl PartialEq for ContextItem
Source§fn eq(&self, other: &ContextItem) -> bool
fn eq(&self, other: &ContextItem) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ContextItem
impl Serialize for ContextItem
impl StructuralPartialEq for ContextItem
Auto Trait Implementations§
impl !Freeze for ContextItem
impl RefUnwindSafe for ContextItem
impl Send for ContextItem
impl Sync for ContextItem
impl Unpin for ContextItem
impl UnsafeUnpin for ContextItem
impl UnwindSafe for ContextItem
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more