#[non_exhaustive]pub enum TimingMode {
EarlyExitAllowed,
}Expand description
Execution timing policy.
EarlyExitAllowed is always available. The ConstantIteration variant is
gated behind the constant-iteration feature, so requesting constant-iteration
without that feature fails at compile time (decision M5). TimingMode is
#[non_exhaustive], so downstream matches must include a wildcard arm and
stay robust regardless of which features compiled the variant in.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
EarlyExitAllowed
Bounded run that may exit early once converged.
Trait Implementations§
Source§impl Clone for TimingMode
impl Clone for TimingMode
Source§fn clone(&self) -> TimingMode
fn clone(&self) -> TimingMode
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 moreimpl Copy for TimingMode
Source§impl Debug for TimingMode
impl Debug for TimingMode
impl Eq for TimingMode
Source§impl PartialEq for TimingMode
impl PartialEq for TimingMode
Source§fn eq(&self, other: &TimingMode) -> bool
fn eq(&self, other: &TimingMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TimingMode
Auto Trait Implementations§
impl Freeze for TimingMode
impl RefUnwindSafe for TimingMode
impl Send for TimingMode
impl Sync for TimingMode
impl Unpin for TimingMode
impl UnsafeUnpin for TimingMode
impl UnwindSafe for TimingMode
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