pub enum EngineFactStateV1 {
Known(EngineFactValueV1),
Unknown,
NotApplicable,
}Expand description
Evidence state of one immutable profile fact.
Variants§
Known(EngineFactValueV1)
Supported known value.
Unknown
Primary evidence does not establish a value.
NotApplicable
The fact domain genuinely does not apply.
Trait Implementations§
Source§impl Clone for EngineFactStateV1
impl Clone for EngineFactStateV1
Source§fn clone(&self) -> EngineFactStateV1
fn clone(&self) -> EngineFactStateV1
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 EngineFactStateV1
impl Debug for EngineFactStateV1
Source§impl<'de> Deserialize<'de> for EngineFactStateV1
impl<'de> Deserialize<'de> for EngineFactStateV1
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 EngineFactStateV1
Source§impl Ord for EngineFactStateV1
impl Ord for EngineFactStateV1
Source§fn cmp(&self, other: &EngineFactStateV1) -> Ordering
fn cmp(&self, other: &EngineFactStateV1) -> 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 EngineFactStateV1
impl PartialEq for EngineFactStateV1
Source§impl PartialOrd for EngineFactStateV1
impl PartialOrd for EngineFactStateV1
Source§impl Serialize for EngineFactStateV1
impl Serialize for EngineFactStateV1
impl StructuralPartialEq for EngineFactStateV1
Auto Trait Implementations§
impl Freeze for EngineFactStateV1
impl RefUnwindSafe for EngineFactStateV1
impl Send for EngineFactStateV1
impl Sync for EngineFactStateV1
impl Unpin for EngineFactStateV1
impl UnsafeUnpin for EngineFactStateV1
impl UnwindSafe for EngineFactStateV1
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