pub enum TruthCeiling {
None,
Advisory,
Observed,
Validated,
PromotedByCortex,
}Expand description
Truth ceiling vocabulary.
Variants§
None
No truth claim permitted.
Advisory
Advisory only.
Observed
Observed only.
Validated
Validated.
PromotedByCortex
Already promoted by Cortex (display only at the receiver).
Implementations§
Source§impl TruthCeiling
impl TruthCeiling
Sourcepub const fn wire_string(self) -> &'static str
pub const fn wire_string(self) -> &'static str
Stable wire string mirroring the JSON Schema enum.
Trait Implementations§
Source§impl Clone for TruthCeiling
impl Clone for TruthCeiling
Source§fn clone(&self) -> TruthCeiling
fn clone(&self) -> TruthCeiling
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 TruthCeiling
impl Debug for TruthCeiling
Source§impl<'de> Deserialize<'de> for TruthCeiling
impl<'de> Deserialize<'de> for TruthCeiling
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
Source§impl Hash for TruthCeiling
impl Hash for TruthCeiling
Source§impl PartialEq for TruthCeiling
impl PartialEq for TruthCeiling
Source§fn eq(&self, other: &TruthCeiling) -> bool
fn eq(&self, other: &TruthCeiling) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TruthCeiling
impl Serialize for TruthCeiling
impl Copy for TruthCeiling
impl Eq for TruthCeiling
impl StructuralPartialEq for TruthCeiling
Auto Trait Implementations§
impl Freeze for TruthCeiling
impl RefUnwindSafe for TruthCeiling
impl Send for TruthCeiling
impl Sync for TruthCeiling
impl Unpin for TruthCeiling
impl UnsafeUnpin for TruthCeiling
impl UnwindSafe for TruthCeiling
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