pub struct VisibleRuntimePhasePlan {
pub publish_control: bool,
pub selected_raw_phase: RuntimeState,
pub visible_phase: RuntimeState,
}Expand description
Machine-owned arbitration verdict between the live DSL lifecycle phase and
the durable control projection, emitted by generated MeerkatMachine
authority. publish_control is the terminal-precedence decision (the
published control projection supersedes the live DSL phase);
selected_raw_phase is the chosen phase without the visibility rewrite;
visible_phase is the externally-visible phase after the
Running+pre_run(Retired)->Retired rewrite. The shell mirrors all three.
Fields§
§publish_control: bool§selected_raw_phase: RuntimeState§visible_phase: RuntimeStateTrait Implementations§
Source§impl Clone for VisibleRuntimePhasePlan
impl Clone for VisibleRuntimePhasePlan
Source§fn clone(&self) -> VisibleRuntimePhasePlan
fn clone(&self) -> VisibleRuntimePhasePlan
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 moreimpl Copy for VisibleRuntimePhasePlan
Source§impl Debug for VisibleRuntimePhasePlan
impl Debug for VisibleRuntimePhasePlan
impl Eq for VisibleRuntimePhasePlan
Source§impl PartialEq for VisibleRuntimePhasePlan
impl PartialEq for VisibleRuntimePhasePlan
Source§fn eq(&self, other: &VisibleRuntimePhasePlan) -> bool
fn eq(&self, other: &VisibleRuntimePhasePlan) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for VisibleRuntimePhasePlan
Auto Trait Implementations§
impl Freeze for VisibleRuntimePhasePlan
impl RefUnwindSafe for VisibleRuntimePhasePlan
impl Send for VisibleRuntimePhasePlan
impl Sync for VisibleRuntimePhasePlan
impl Unpin for VisibleRuntimePhasePlan
impl UnsafeUnpin for VisibleRuntimePhasePlan
impl UnwindSafe for VisibleRuntimePhasePlan
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.