pub enum LBool {
True,
False,
Undef,
}Expand description
A Lifted boolean.
Variants§
True
Represents True.
False
Represents False.
Undef
Represents neither True nor False, usually used when variable is unassigned.
Trait Implementations§
impl Copy for LBool
impl StructuralPartialEq for LBool
Auto Trait Implementations§
impl Freeze for LBool
impl RefUnwindSafe for LBool
impl Send for LBool
impl Sync for LBool
impl Unpin for LBool
impl UnsafeUnpin for LBool
impl UnwindSafe for LBool
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