pub enum SelfTestWorkers {
All(String),
List(Vec<WorkerId>),
}Expand description
Which workers to include in self-test runs.
Variants§
All(String)
Special value “all” (or a single worker id string).
List(Vec<WorkerId>)
Explicit worker list.
Implementations§
Trait Implementations§
Source§impl Clone for SelfTestWorkers
impl Clone for SelfTestWorkers
Source§fn clone(&self) -> SelfTestWorkers
fn clone(&self) -> SelfTestWorkers
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 SelfTestWorkers
impl Debug for SelfTestWorkers
Source§impl Default for SelfTestWorkers
impl Default for SelfTestWorkers
Source§impl<'de> Deserialize<'de> for SelfTestWorkers
impl<'de> Deserialize<'de> for SelfTestWorkers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SelfTestWorkers
impl PartialEq for SelfTestWorkers
Source§fn eq(&self, other: &SelfTestWorkers) -> bool
fn eq(&self, other: &SelfTestWorkers) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for SelfTestWorkers
impl Serialize for SelfTestWorkers
impl Eq for SelfTestWorkers
impl StructuralPartialEq for SelfTestWorkers
Auto Trait Implementations§
impl Freeze for SelfTestWorkers
impl RefUnwindSafe for SelfTestWorkers
impl Send for SelfTestWorkers
impl Sync for SelfTestWorkers
impl Unpin for SelfTestWorkers
impl UnsafeUnpin for SelfTestWorkers
impl UnwindSafe for SelfTestWorkers
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§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.