pub struct CostBound {
pub lower: u64,
pub upper: Option<u64>,
}Expand description
Abstract cost model: estimated number of reduction steps.
Fields§
§lower: u64§upper: Option<u64>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CostBound
impl RefUnwindSafe for CostBound
impl Send for CostBound
impl Sync for CostBound
impl Unpin for CostBound
impl UnsafeUnpin for CostBound
impl UnwindSafe for CostBound
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