pub struct PendingSystemContextAppend {
pub text: String,
pub source: Option<String>,
pub idempotency_key: Option<String>,
pub accepted_at: SystemTime,
}Expand description
Pending append request accepted by the control plane but not yet applied at an LLM boundary.
Fields§
§text: String§source: Option<String>§idempotency_key: Option<String>§accepted_at: SystemTimeTrait Implementations§
Source§impl Clone for PendingSystemContextAppend
impl Clone for PendingSystemContextAppend
Source§fn clone(&self) -> PendingSystemContextAppend
fn clone(&self) -> PendingSystemContextAppend
Returns a duplicate of the value. Read more
1.0.0 · 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 PendingSystemContextAppend
impl Debug for PendingSystemContextAppend
Source§impl<'de> Deserialize<'de> for PendingSystemContextAppend
impl<'de> Deserialize<'de> for PendingSystemContextAppend
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
impl Eq for PendingSystemContextAppend
impl StructuralPartialEq for PendingSystemContextAppend
Auto Trait Implementations§
impl Freeze for PendingSystemContextAppend
impl RefUnwindSafe for PendingSystemContextAppend
impl Send for PendingSystemContextAppend
impl Sync for PendingSystemContextAppend
impl Unpin for PendingSystemContextAppend
impl UnsafeUnpin for PendingSystemContextAppend
impl UnwindSafe for PendingSystemContextAppend
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.