pub struct ReductionBudget {
pub remaining: u64,
}Expand description
Controls how many reduction steps are permitted before giving up.
Fields§
§remaining: u64Remaining number of steps allowed.
Implementations§
Trait Implementations§
Source§impl Clone for ReductionBudget
impl Clone for ReductionBudget
Source§fn clone(&self) -> ReductionBudget
fn clone(&self) -> ReductionBudget
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ReductionBudget
impl Debug for ReductionBudget
Source§impl PartialEq for ReductionBudget
impl PartialEq for ReductionBudget
impl Copy for ReductionBudget
impl Eq for ReductionBudget
impl StructuralPartialEq for ReductionBudget
Auto Trait Implementations§
impl Freeze for ReductionBudget
impl RefUnwindSafe for ReductionBudget
impl Send for ReductionBudget
impl Sync for ReductionBudget
impl Unpin for ReductionBudget
impl UnsafeUnpin for ReductionBudget
impl UnwindSafe for ReductionBudget
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