pub enum EngineFactStateV2 {
Known(EngineFactValueV2),
Unknown,
NotApplicable,
}Expand description
Evidence state of one V2 profile fact.
Variants§
Known(EngineFactValueV2)
Supported exact value.
Unknown
Primary evidence does not establish a value.
NotApplicable
The domain genuinely does not apply.
Trait Implementations§
Source§impl Clone for EngineFactStateV2
impl Clone for EngineFactStateV2
Source§fn clone(&self) -> EngineFactStateV2
fn clone(&self) -> EngineFactStateV2
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 EngineFactStateV2
impl Debug for EngineFactStateV2
Source§impl<'de> Deserialize<'de> for EngineFactStateV2
impl<'de> Deserialize<'de> for EngineFactStateV2
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 EngineFactStateV2
Source§impl Ord for EngineFactStateV2
impl Ord for EngineFactStateV2
Source§fn cmp(&self, other: &EngineFactStateV2) -> Ordering
fn cmp(&self, other: &EngineFactStateV2) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for EngineFactStateV2
impl PartialEq for EngineFactStateV2
Source§impl PartialOrd for EngineFactStateV2
impl PartialOrd for EngineFactStateV2
Source§impl Serialize for EngineFactStateV2
impl Serialize for EngineFactStateV2
impl StructuralPartialEq for EngineFactStateV2
Auto Trait Implementations§
impl Freeze for EngineFactStateV2
impl RefUnwindSafe for EngineFactStateV2
impl Send for EngineFactStateV2
impl Sync for EngineFactStateV2
impl Unpin for EngineFactStateV2
impl UnsafeUnpin for EngineFactStateV2
impl UnwindSafe for EngineFactStateV2
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