pub struct RuntimeInputProjection {
pub append: Option<ConversationAppend>,
pub additional_appends: Vec<ConversationAppend>,
pub context_append: Option<ConversationContextAppend>,
}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>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 Eq 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
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.