pub struct FixpointConfig {
pub max_iterations: usize,
}Expand description
Configuration for evaluate_fixpoint.
Fields§
§max_iterations: usizeHard cap on iteration count. Returns
FixpointError::MaxIterationsExceeded if convergence
is not reached within this many iterations. Must be ≥ 1.
Trait Implementations§
Source§impl Clone for FixpointConfig
impl Clone for FixpointConfig
Source§fn clone(&self) -> FixpointConfig
fn clone(&self) -> FixpointConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FixpointConfig
impl Debug for FixpointConfig
Source§impl Default for FixpointConfig
impl Default for FixpointConfig
impl Eq for FixpointConfig
Source§impl PartialEq for FixpointConfig
impl PartialEq for FixpointConfig
Source§fn eq(&self, other: &FixpointConfig) -> bool
fn eq(&self, other: &FixpointConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FixpointConfig
Auto Trait Implementations§
impl Freeze for FixpointConfig
impl RefUnwindSafe for FixpointConfig
impl Send for FixpointConfig
impl Sync for FixpointConfig
impl Unpin for FixpointConfig
impl UnsafeUnpin for FixpointConfig
impl UnwindSafe for FixpointConfig
Blanket Implementations§
impl<T> Allocation for T
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