pub struct RuntimeInputProjection {
pub injected_context_appends: Vec<ConversationAppend>,
pub append: Option<ConversationAppend>,
pub additional_appends: Vec<ConversationAppend>,
}Expand description
Admitted conversation projection for one input.
The raw input payload is still retained for durability/replay, but the
runtime loop consumes this admitted projection when constructing
RunPrimitive so dequeue mechanics do not reinterpret peer conventions or
terminal status payloads.
Fields§
§injected_context_appends: Vec<ConversationAppend>Host-attached injected-context appends staged immediately BEFORE
append (the input’s own transcript append) when the batch primitive
is constructed. A distinct slot — not additional_appends — because
the ordering invariant is “injected context lands before the turn’s
user/peer append” and additional_appends chain AFTER it.
append: Option<ConversationAppend>§additional_appends: Vec<ConversationAppend>Trait Implementations§
Source§impl Clone for RuntimeInputProjection
impl Clone for RuntimeInputProjection
Source§fn clone(&self) -> RuntimeInputProjection
fn clone(&self) -> RuntimeInputProjection
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 RuntimeInputProjection
impl Debug for RuntimeInputProjection
Source§impl Default for RuntimeInputProjection
impl Default for RuntimeInputProjection
Source§fn default() -> RuntimeInputProjection
fn default() -> RuntimeInputProjection
Returns the “default value” for a type. Read more
Source§impl PartialEq for RuntimeInputProjection
impl PartialEq for RuntimeInputProjection
impl StructuralPartialEq for RuntimeInputProjection
Auto Trait Implementations§
impl Freeze for RuntimeInputProjection
impl RefUnwindSafe for RuntimeInputProjection
impl Send for RuntimeInputProjection
impl Sync for RuntimeInputProjection
impl Unpin for RuntimeInputProjection
impl UnsafeUnpin for RuntimeInputProjection
impl UnwindSafe for RuntimeInputProjection
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