pub struct RuntimeInputProjection {
pub append: Option<ConversationAppend>,
pub additional_appends: Vec<ConversationAppend>,
pub context_append: Option<ConversationContextAppend>,
pub peer_response_terminal: Option<PeerResponseTerminalFact>,
}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§
§append: Option<ConversationAppend>§additional_appends: Vec<ConversationAppend>§context_append: Option<ConversationContextAppend>§peer_response_terminal: Option<PeerResponseTerminalFact>Typed terminal-peer-response fact this projection carries when the
admitted input is a peer terminal response. The producer threads the
typed meerkat_core::PeerResponseTerminalFact all the way to the
realtime/live consumer instead of re-deriving it from the flattened
context_append prose text.
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
Source§fn eq(&self, other: &RuntimeInputProjection) -> bool
fn eq(&self, other: &RuntimeInputProjection) -> bool
Tests for
self and other values to be equal, and is used by ==.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