pub enum ParallelErrorStrategy {
FailFast,
CollectAll,
}Expand description
并行执行错误处理策略。
Variants§
Trait Implementations§
Source§impl Clone for ParallelErrorStrategy
impl Clone for ParallelErrorStrategy
Source§fn clone(&self) -> ParallelErrorStrategy
fn clone(&self) -> ParallelErrorStrategy
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 ParallelErrorStrategy
Source§impl Debug for ParallelErrorStrategy
impl Debug for ParallelErrorStrategy
Source§impl Default for ParallelErrorStrategy
impl Default for ParallelErrorStrategy
Source§fn default() -> ParallelErrorStrategy
fn default() -> ParallelErrorStrategy
Returns the “default value” for a type. Read more
impl Eq for ParallelErrorStrategy
Source§impl PartialEq for ParallelErrorStrategy
impl PartialEq for ParallelErrorStrategy
Source§fn eq(&self, other: &ParallelErrorStrategy) -> bool
fn eq(&self, other: &ParallelErrorStrategy) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ParallelErrorStrategy
Auto Trait Implementations§
impl Freeze for ParallelErrorStrategy
impl RefUnwindSafe for ParallelErrorStrategy
impl Send for ParallelErrorStrategy
impl Sync for ParallelErrorStrategy
impl Unpin for ParallelErrorStrategy
impl UnsafeUnpin for ParallelErrorStrategy
impl UnwindSafe for ParallelErrorStrategy
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.