pub enum ObservationConfidence {
Proven,
Unknown,
}Expand description
Confidence for a refined runtime observation.
Importers must not treat ObservationConfidence::Unknown conflicts as proven facts.
Variants§
Proven
Observations for this identity agree.
Unknown
Observations disagree, identity does not match, or evidence is otherwise insufficient.
Trait Implementations§
Source§impl Clone for ObservationConfidence
impl Clone for ObservationConfidence
Source§fn clone(&self) -> ObservationConfidence
fn clone(&self) -> ObservationConfidence
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 ObservationConfidence
Source§impl Debug for ObservationConfidence
impl Debug for ObservationConfidence
Source§impl<'de> Deserialize<'de> for ObservationConfidence
impl<'de> Deserialize<'de> for ObservationConfidence
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 ObservationConfidence
Source§impl Hash for ObservationConfidence
impl Hash for ObservationConfidence
Source§impl PartialEq for ObservationConfidence
impl PartialEq for ObservationConfidence
Source§impl Serialize for ObservationConfidence
impl Serialize for ObservationConfidence
impl StructuralPartialEq for ObservationConfidence
Auto Trait Implementations§
impl Freeze for ObservationConfidence
impl RefUnwindSafe for ObservationConfidence
impl Send for ObservationConfidence
impl Sync for ObservationConfidence
impl Unpin for ObservationConfidence
impl UnsafeUnpin for ObservationConfidence
impl UnwindSafe for ObservationConfidence
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