pub struct BddStats {
pub variables: usize,
pub nodes: usize,
pub time_us: u64,
}Expand description
BDD operation statistics
Fields§
§variables: usizeNumber of BDD variables created
nodes: usizeNumber of BDD nodes in final result
time_us: u64Time spent in BDD operations (microseconds)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for BddStats
impl RefUnwindSafe for BddStats
impl Send for BddStats
impl Sync for BddStats
impl Unpin for BddStats
impl UnwindSafe for BddStats
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