pub enum BeliefType {
Fact,
Hypothesis,
Uncertainty,
}Expand description
Type of belief.
Variants§
Trait Implementations§
Source§impl Clone for BeliefType
impl Clone for BeliefType
Source§fn clone(&self) -> BeliefType
fn clone(&self) -> BeliefType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for BeliefType
impl ComposeSchema for BeliefType
Source§impl Debug for BeliefType
impl Debug for BeliefType
Source§impl Default for BeliefType
impl Default for BeliefType
Source§fn default() -> BeliefType
fn default() -> BeliefType
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BeliefType
impl<'de> Deserialize<'de> for BeliefType
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 BeliefType
impl Hash for BeliefType
Source§impl PartialEq for BeliefType
impl PartialEq for BeliefType
Source§impl Serialize for BeliefType
impl Serialize for BeliefType
Source§impl ToSchema for BeliefType
impl ToSchema for BeliefType
impl Copy for BeliefType
impl Eq for BeliefType
impl StructuralPartialEq for BeliefType
Auto Trait Implementations§
impl Freeze for BeliefType
impl RefUnwindSafe for BeliefType
impl Send for BeliefType
impl Sync for BeliefType
impl Unpin for BeliefType
impl UnwindSafe for BeliefType
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.