pub struct CascadeComputedValueResultV0 {
pub schema_version: &'static str,
pub product: &'static str,
pub property: String,
pub status: ComputedCascadeValueStatusV0,
pub value: CascadeValue,
pub winner_declaration_id: Option<String>,
pub inherited: bool,
pub used_initial_value: bool,
pub invalid_at_computed_value_time: bool,
pub indeterminate_reason: Option<ComputedCascadeIndeterminateReasonV0>,
pub fallback_indeterminate_reason: Option<ComputedCascadeIndeterminateReasonV0>,
pub derivation_steps: Vec<&'static str>,
}Fields§
§schema_version: &'static str§product: &'static str§property: String§status: ComputedCascadeValueStatusV0§value: CascadeValue§winner_declaration_id: Option<String>§inherited: bool§used_initial_value: bool§invalid_at_computed_value_time: bool§indeterminate_reason: Option<ComputedCascadeIndeterminateReasonV0>§fallback_indeterminate_reason: Option<ComputedCascadeIndeterminateReasonV0>Why the value the declaration falls back to could not be determined when
the declaration itself became invalid at computed-value time. This is
orthogonal to indeterminate_reason, which remains absent unless the
result status is Indeterminate.
derivation_steps: Vec<&'static str>Trait Implementations§
Source§impl Clone for CascadeComputedValueResultV0
impl Clone for CascadeComputedValueResultV0
Source§fn clone(&self) -> CascadeComputedValueResultV0
fn clone(&self) -> CascadeComputedValueResultV0
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 CascadeComputedValueResultV0
impl Debug for CascadeComputedValueResultV0
impl Eq for CascadeComputedValueResultV0
impl StructuralPartialEq for CascadeComputedValueResultV0
Auto Trait Implementations§
impl Freeze for CascadeComputedValueResultV0
impl RefUnwindSafe for CascadeComputedValueResultV0
impl Send for CascadeComputedValueResultV0
impl Sync for CascadeComputedValueResultV0
impl Unpin for CascadeComputedValueResultV0
impl UnsafeUnpin for CascadeComputedValueResultV0
impl UnwindSafe for CascadeComputedValueResultV0
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.