pub struct StepTimeout(pub usize);Expand description
User defined timeout after which step reduction should not increase step for timeout controlled steps.
Tuple Fields§
§0: usizeTrait Implementations§
Source§impl Clone for StepTimeout
impl Clone for StepTimeout
Source§fn clone(&self) -> StepTimeout
fn clone(&self) -> StepTimeout
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 StepTimeout
impl Debug for StepTimeout
Source§impl Default for StepTimeout
impl Default for StepTimeout
Source§impl Deref for StepTimeout
impl Deref for StepTimeout
Source§impl DerefMut for StepTimeout
impl DerefMut for StepTimeout
Source§impl Display for StepTimeout
impl Display for StepTimeout
Source§impl From<usize> for StepTimeout
impl From<usize> for StepTimeout
Source§impl Into<OdeOption> for StepTimeout
impl Into<OdeOption> for StepTimeout
Source§impl OdeOp for StepTimeout
impl OdeOp for StepTimeout
fn option_name() -> &'static str
Source§impl PartialEq for StepTimeout
impl PartialEq for StepTimeout
impl StructuralPartialEq for StepTimeout
Auto Trait Implementations§
impl Freeze for StepTimeout
impl RefUnwindSafe for StepTimeout
impl Send for StepTimeout
impl Sync for StepTimeout
impl Unpin for StepTimeout
impl UnsafeUnpin for StepTimeout
impl UnwindSafe for StepTimeout
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§unsafe fn to_subset_unchecked(&self) -> SS
unsafe fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.