pub struct BoolLattice {
pub bottom: bool,
pub top: bool,
pub distributive: bool,
pub complemented: bool,
}Expand description
Boolean lattice structure: (Bool, OR=join, AND=meet, false=bot, true=top).
Fields§
§bottom: boolBottom element (false).
top: boolTop element (true).
distributive: boolIs this a distributive lattice?
complemented: boolIs this a complemented lattice?
Auto Trait Implementations§
impl Freeze for BoolLattice
impl RefUnwindSafe for BoolLattice
impl Send for BoolLattice
impl Sync for BoolLattice
impl Unpin for BoolLattice
impl UnsafeUnpin for BoolLattice
impl UnwindSafe for BoolLattice
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