pub enum TruthValue {
Free = 0,
True = 1,
False = 2,
}Expand description
Represents three-valued truth values.
Variants§
Trait Implementations§
Source§impl Clone for TruthValue
impl Clone for TruthValue
Source§fn clone(&self) -> TruthValue
fn clone(&self) -> TruthValue
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 Debug for TruthValue
impl Debug for TruthValue
Source§impl PartialEq for TruthValue
impl PartialEq for TruthValue
impl Copy for TruthValue
impl StructuralPartialEq for TruthValue
Auto Trait Implementations§
impl Freeze for TruthValue
impl RefUnwindSafe for TruthValue
impl Send for TruthValue
impl Sync for TruthValue
impl Unpin for TruthValue
impl UnwindSafe for TruthValue
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