pub enum StopReason<T = String>where
T: Clone,{
Saturated,
IterationLimit,
TimeLimit,
NodeLimit,
Other(T),
}Variants§
Trait Implementations§
Source§impl<T> Clone for StopReason<T>
impl<T> Clone for StopReason<T>
Source§fn clone(&self) -> StopReason<T>
fn clone(&self) -> StopReason<T>
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 moreAuto Trait Implementations§
impl<T> Freeze for StopReason<T>where
T: Freeze,
impl<T> RefUnwindSafe for StopReason<T>where
T: RefUnwindSafe,
impl<T> Send for StopReason<T>where
T: Send,
impl<T> Sync for StopReason<T>where
T: Sync,
impl<T> Unpin for StopReason<T>where
T: Unpin,
impl<T> UnsafeUnpin for StopReason<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for StopReason<T>where
T: UnwindSafe,
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