pub struct MissionGateResult {
pub mission: WorkIdentity,
pub delivery: DeliveryEligibility,
pub events: Vec<WorkProjectionEvent>,
}Expand description
Result of evaluating one Mission against its required Goal evaluations.
Fields§
§mission: WorkIdentityMission identity evaluated by the gate.
delivery: DeliveryEligibilityDelivery eligibility; blocked results never mutate work state.
events: Vec<WorkProjectionEvent>Deterministically ordered events for UI-neutral consumers.
Trait Implementations§
Source§impl Clone for MissionGateResult
impl Clone for MissionGateResult
Source§fn clone(&self) -> MissionGateResult
fn clone(&self) -> MissionGateResult
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 MissionGateResult
impl Debug for MissionGateResult
Source§impl<'de> Deserialize<'de> for MissionGateResult
impl<'de> Deserialize<'de> for MissionGateResult
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
impl Eq for MissionGateResult
Source§impl JsonSchema for MissionGateResult
impl JsonSchema for MissionGateResult
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for MissionGateResult
impl PartialEq for MissionGateResult
Source§impl Serialize for MissionGateResult
impl Serialize for MissionGateResult
impl StructuralPartialEq for MissionGateResult
Auto Trait Implementations§
impl Freeze for MissionGateResult
impl RefUnwindSafe for MissionGateResult
impl Send for MissionGateResult
impl Sync for MissionGateResult
impl Unpin for MissionGateResult
impl UnsafeUnpin for MissionGateResult
impl UnwindSafe for MissionGateResult
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