pub enum Kleene3Val {
False,
Unknown,
True,
}Expand description
A simple Kleene three-valued logic evaluator.
Variants§
Implementations§
Source§impl Kleene3Val
impl Kleene3Val
Trait Implementations§
Source§impl Clone for Kleene3Val
impl Clone for Kleene3Val
Source§fn clone(&self) -> Kleene3Val
fn clone(&self) -> Kleene3Val
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 Kleene3Val
impl Debug for Kleene3Val
Source§impl PartialEq for Kleene3Val
impl PartialEq for Kleene3Val
impl Copy for Kleene3Val
impl Eq for Kleene3Val
impl StructuralPartialEq for Kleene3Val
Auto Trait Implementations§
impl Freeze for Kleene3Val
impl RefUnwindSafe for Kleene3Val
impl Send for Kleene3Val
impl Sync for Kleene3Val
impl Unpin for Kleene3Val
impl UnsafeUnpin for Kleene3Val
impl UnwindSafe for Kleene3Val
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