tribool

Enum Tribool

Source
pub enum Tribool {
    True,
    False,
    Indeterminate,
}
Expand description

Three-state Boolean logic

Variants§

§

True

Truth value

§

False

False value

§

Indeterminate

Unknown/Indeterminate value

Implementations§

Source§

impl Tribool

Source

pub const fn boolean(value: bool) -> Tribool

Construct a new non-indeterminate Tribool from a regular boolean value

Source

pub const fn is_true(self) -> bool

Returns true only if self is True

§Example
assert!(Tribool::True.is_true())
Source

pub const fn is_false(self) -> bool

Returns true only if self is False

§Example
assert!(Tribool::False.is_false())
Source

pub const fn is_indeterminate(self) -> bool

Returns true only if self is Indeterminate

§Example
assert!(Tribool::Indeterminate.is_indeterminate())
Source

pub const fn equals(self, rhs: Tribool) -> Tribool

Checks for equality of two Tribools, returning Indeterminate if either are indeterminate.

§Example
assert!(Tribool::True.equals(Tribool::True).is_true());
assert!(Tribool::True.equals(Tribool::False).is_false());
assert!(Tribool::Indeterminate.equals(Tribool::False).is_indeterminate())
Source

pub const fn not_equals(self, rhs: Tribool) -> Tribool

Checks for inequality of two Tribools, returning Indeterminate if either are indeterminate.

§Example
assert!(Tribool::True.not_equals(Tribool::True).is_false());
assert!(Tribool::True.not_equals(Tribool::False).is_true());
assert!(Tribool::Indeterminate.not_equals(Tribool::False).is_indeterminate())
Source

pub const fn kleene_implication(self, b: Tribool) -> Tribool

Material implication using Kleene Logic.

This is equivalent to NOT(A) OR B.

Source

pub fn lukasiewicz_implication(self, b: Tribool) -> Tribool

Material implication using Łukasiewicz Logic

The Łukasiewicz Ł3 has the same tables for AND, OR, and NOT as the Kleene logic used elsewhere, but differs in its definition of implication in that “unknown implies unknown” is true.

For more information, see the Wikipedia page and the section on Łukasiewicz Logic

Source

pub const fn and(self, rhs: Tribool) -> Tribool

Logical conjunction

Source

pub const fn or(self, rhs: Tribool) -> Tribool

Logical disjunction

Source

pub const fn xor(self, rhs: Tribool) -> Tribool

Logical exclusive disjunction

Source

pub const fn negate(self) -> Tribool

Logical negation

Source

pub const fn compare(self, rhs: Tribool) -> Option<Ordering>

Compares two Tribools similarly to a bool, where true is greater than false

Indeterminate values cannot be compared to order and therefore return None

Trait Implementations§

Source§

impl<'a, 'b> BitAnd<&'a Tribool> for &'b Tribool

Source§

type Output = <Tribool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a Tribool) -> <Tribool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl<'a, 'b> BitAnd<&'a Tribool> for &'b bool

Source§

type Output = <bool as BitAnd<Tribool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a Tribool) -> <bool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Tribool> for Tribool

Source§

type Output = <Tribool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a Tribool) -> <Tribool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a Tribool> for bool

Source§

type Output = <bool as BitAnd<Tribool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a Tribool) -> <bool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl<'a, 'b> BitAnd<&'a bool> for &'b Tribool

Source§

type Output = <Tribool as BitAnd<bool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a bool) -> <Tribool as BitAnd<bool>>::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<&'a bool> for Tribool

Source§

type Output = <Tribool as BitAnd<bool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: &'a bool) -> <Tribool as BitAnd<bool>>::Output

Performs the & operation. Read more
Source§

impl<B: Into<Tribool>> BitAnd<B> for Tribool

Source§

type Output = Tribool

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: B) -> Tribool

Performs the & operation. Read more
Source§

impl<'a> BitAnd<Tribool> for &'a Tribool

Source§

type Output = <Tribool as BitAnd>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: Tribool) -> <Tribool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl<'a> BitAnd<Tribool> for &'a bool

Source§

type Output = <bool as BitAnd<Tribool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: Tribool) -> <bool as BitAnd<Tribool>>::Output

Performs the & operation. Read more
Source§

impl BitAnd<Tribool> for bool

Source§

type Output = Tribool

The resulting type after applying the & operator.
Source§

fn bitand(self, rhs: Tribool) -> Tribool

Performs the & operation. Read more
Source§

impl<'a> BitAnd<bool> for &'a Tribool

Source§

type Output = <Tribool as BitAnd<bool>>::Output

The resulting type after applying the & operator.
Source§

fn bitand(self, other: bool) -> <Tribool as BitAnd<bool>>::Output

Performs the & operation. Read more
Source§

impl<B: Into<Tribool>> BitAndAssign<B> for Tribool

Source§

fn bitand_assign(&mut self, rhs: B)

Performs the &= operation. Read more
Source§

impl BitAndAssign<Tribool> for bool

Source§

fn bitand_assign(&mut self, rhs: Tribool)

Performs the &= operation. Read more
Source§

impl<'a, 'b> BitOr<&'a Tribool> for &'b Tribool

Source§

type Output = <Tribool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a Tribool) -> <Tribool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl<'a, 'b> BitOr<&'a Tribool> for &'b bool

Source§

type Output = <bool as BitOr<Tribool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a Tribool) -> <bool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Tribool> for Tribool

Source§

type Output = <Tribool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a Tribool) -> <Tribool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a Tribool> for bool

Source§

type Output = <bool as BitOr<Tribool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a Tribool) -> <bool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl<'a, 'b> BitOr<&'a bool> for &'b Tribool

Source§

type Output = <Tribool as BitOr<bool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a bool) -> <Tribool as BitOr<bool>>::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<&'a bool> for Tribool

Source§

type Output = <Tribool as BitOr<bool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: &'a bool) -> <Tribool as BitOr<bool>>::Output

Performs the | operation. Read more
Source§

impl<B: Into<Tribool>> BitOr<B> for Tribool

Source§

type Output = Tribool

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: B) -> Tribool

Performs the | operation. Read more
Source§

impl<'a> BitOr<Tribool> for &'a Tribool

Source§

type Output = <Tribool as BitOr>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: Tribool) -> <Tribool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl<'a> BitOr<Tribool> for &'a bool

Source§

type Output = <bool as BitOr<Tribool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: Tribool) -> <bool as BitOr<Tribool>>::Output

Performs the | operation. Read more
Source§

impl BitOr<Tribool> for bool

Source§

type Output = Tribool

The resulting type after applying the | operator.
Source§

fn bitor(self, rhs: Tribool) -> Tribool

Performs the | operation. Read more
Source§

impl<'a> BitOr<bool> for &'a Tribool

Source§

type Output = <Tribool as BitOr<bool>>::Output

The resulting type after applying the | operator.
Source§

fn bitor(self, other: bool) -> <Tribool as BitOr<bool>>::Output

Performs the | operation. Read more
Source§

impl<B: Into<Tribool>> BitOrAssign<B> for Tribool

Source§

fn bitor_assign(&mut self, rhs: B)

Performs the |= operation. Read more
Source§

impl BitOrAssign<Tribool> for bool

Source§

fn bitor_assign(&mut self, rhs: Tribool)

Performs the |= operation. Read more
Source§

impl<'a, 'b> BitXor<&'a Tribool> for &'b Tribool

Source§

type Output = <Tribool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a Tribool) -> <Tribool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a, 'b> BitXor<&'a Tribool> for &'b bool

Source§

type Output = <bool as BitXor<Tribool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a Tribool) -> <bool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Tribool> for Tribool

Source§

type Output = <Tribool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a Tribool) -> <Tribool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a Tribool> for bool

Source§

type Output = <bool as BitXor<Tribool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a Tribool) -> <bool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a, 'b> BitXor<&'a bool> for &'b Tribool

Source§

type Output = <Tribool as BitXor<bool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a bool) -> <Tribool as BitXor<bool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<&'a bool> for Tribool

Source§

type Output = <Tribool as BitXor<bool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: &'a bool) -> <Tribool as BitXor<bool>>::Output

Performs the ^ operation. Read more
Source§

impl<B: Into<Tribool>> BitXor<B> for Tribool

Source§

type Output = Tribool

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: B) -> Tribool

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<Tribool> for &'a Tribool

Source§

type Output = <Tribool as BitXor>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: Tribool) -> <Tribool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<Tribool> for &'a bool

Source§

type Output = <bool as BitXor<Tribool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: Tribool) -> <bool as BitXor<Tribool>>::Output

Performs the ^ operation. Read more
Source§

impl BitXor<Tribool> for bool

Source§

type Output = Tribool

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, rhs: Tribool) -> Tribool

Performs the ^ operation. Read more
Source§

impl<'a> BitXor<bool> for &'a Tribool

Source§

type Output = <Tribool as BitXor<bool>>::Output

The resulting type after applying the ^ operator.
Source§

fn bitxor(self, other: bool) -> <Tribool as BitXor<bool>>::Output

Performs the ^ operation. Read more
Source§

impl<B: Into<Tribool>> BitXorAssign<B> for Tribool

Source§

fn bitxor_assign(&mut self, rhs: B)

Performs the ^= operation. Read more
Source§

impl BitXorAssign<Tribool> for bool

Source§

fn bitxor_assign(&mut self, rhs: Tribool)

Performs the ^= operation. Read more
Source§

impl Clone for Tribool

Source§

fn clone(&self) -> Tribool

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Tribool

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for Tribool

Source§

fn default() -> Tribool

Returns the “default value” for a type. Read more
Source§

impl Display for Tribool

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult

Formats the value using the given formatter. Read more
Source§

impl From<Result<Tribool, IndeterminateError>> for Tribool

Source§

fn from(value: Result<Tribool, IndeterminateError>) -> Self

Converts to this type from the input type.
Source§

impl From<bool> for Tribool

Source§

fn from(value: bool) -> Tribool

Converts to this type from the input type.
Source§

impl FromStr for Tribool

Source§

type Err = ()

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Tribool, ()>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Tribool

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl<'a> Not for &'a Tribool

Source§

type Output = <Tribool as Not>::Output

The resulting type after applying the ! operator.
Source§

fn not(self) -> <Tribool as Not>::Output

Performs the unary ! operation. Read more
Source§

impl Not for Tribool

Source§

type Output = Tribool

The resulting type after applying the ! operator.
Source§

fn not(self) -> Tribool

Performs the unary ! operation. Read more
Source§

impl<B: Into<Tribool> + Copy> PartialEq<B> for Tribool

Source§

fn eq(&self, rhs: &B) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, rhs: &B) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialEq<Tribool> for bool

Source§

fn eq(&self, rhs: &Tribool) -> bool

Tests for self and other values to be equal, and is used by ==.
Source§

fn ne(&self, rhs: &Tribool) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<B: Into<Tribool> + Copy> PartialOrd<B> for Tribool

Source§

fn partial_cmp(&self, rhs: &B) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
Source§

fn lt(&self, rhs: &B) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
Source§

fn le(&self, rhs: &B) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
Source§

fn gt(&self, rhs: &B) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
Source§

fn ge(&self, rhs: &B) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl TryFrom<Tribool> for bool

Source§

type Error = IndeterminateError

The type returned in the event of a conversion error.
Source§

fn try_from(value: Tribool) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl Copy for Tribool

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.