pub struct RuntimeInputSemantics {
pub boundary: RunApplyBoundary,
pub execution_kind: RuntimeExecutionKind,
pub peer_response_terminal_apply_intent: Option<PeerResponseTerminalApplyIntent>,
}Expand description
Machine-owned runtime-loop semantics captured at admission.
The runtime loop must not re-read peer conventions, continuation payloads,
or handling-mode hints to decide how a dequeued input runs. Admission has
already resolved the typed policy/kind tuple; this record is the canonical
carrier from that decision point to RunPrimitive construction.
Fields§
§boundary: RunApplyBoundary§execution_kind: RuntimeExecutionKind§peer_response_terminal_apply_intent: Option<PeerResponseTerminalApplyIntent>Implementations§
Source§impl RuntimeInputSemantics
impl RuntimeInputSemantics
pub fn from_policy_and_execution_kind( policy: &PolicyDecision, execution_kind: RuntimeExecutionKind, peer_response_terminal_apply_intent: Option<PeerResponseTerminalApplyIntent>, ) -> Self
pub fn from_policy_and_kind(policy: &PolicyDecision, kind: InputKind) -> Self
Trait Implementations§
Source§impl Clone for RuntimeInputSemantics
impl Clone for RuntimeInputSemantics
Source§fn clone(&self) -> RuntimeInputSemantics
fn clone(&self) -> RuntimeInputSemantics
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 RuntimeInputSemantics
impl Debug for RuntimeInputSemantics
Source§impl<'de> Deserialize<'de> for RuntimeInputSemantics
impl<'de> Deserialize<'de> for RuntimeInputSemantics
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 RuntimeInputSemantics
impl PartialEq for RuntimeInputSemantics
Source§fn eq(&self, other: &RuntimeInputSemantics) -> bool
fn eq(&self, other: &RuntimeInputSemantics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RuntimeInputSemantics
impl Serialize for RuntimeInputSemantics
impl Copy for RuntimeInputSemantics
impl Eq for RuntimeInputSemantics
impl StructuralPartialEq for RuntimeInputSemantics
Auto Trait Implementations§
impl Freeze for RuntimeInputSemantics
impl RefUnwindSafe for RuntimeInputSemantics
impl Send for RuntimeInputSemantics
impl Sync for RuntimeInputSemantics
impl Unpin for RuntimeInputSemantics
impl UnsafeUnpin for RuntimeInputSemantics
impl UnwindSafe for RuntimeInputSemantics
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.