pub enum BDDNode {
Leaf(bool),
Node {
var: usize,
low: usize,
high: usize,
},
}Expand description
A BDD node.
Variants§
Trait Implementations§
impl Eq for BDDNode
impl StructuralPartialEq for BDDNode
Auto Trait Implementations§
impl Freeze for BDDNode
impl RefUnwindSafe for BDDNode
impl Send for BDDNode
impl Sync for BDDNode
impl Unpin for BDDNode
impl UnsafeUnpin for BDDNode
impl UnwindSafe for BDDNode
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