pub enum V3 {
True,
False,
Unknown,
}Expand description
Three-valued truth (Kleene). UNKNOWN is a first-class value, not hidden FALSE.
Variants§
True
Known true.
False
Known false.
Unknown
Not asserted and not derivable — the absence of information, not falsity.
Trait Implementations§
impl Copy for V3
impl Eq for V3
impl StructuralPartialEq for V3
Auto Trait Implementations§
impl Freeze for V3
impl RefUnwindSafe for V3
impl Send for V3
impl Sync for V3
impl Unpin for V3
impl UnsafeUnpin for V3
impl UnwindSafe for V3
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