pub enum ExperimentStatus {
Pending,
Running,
Completed,
Other(String),
}Expand description
ExperimentStatus enumeration.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ExperimentStatus
impl Clone for ExperimentStatus
Source§fn clone(&self) -> ExperimentStatus
fn clone(&self) -> ExperimentStatus
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 ExperimentStatus
impl Debug for ExperimentStatus
Source§impl Default for ExperimentStatus
impl Default for ExperimentStatus
Source§fn default() -> ExperimentStatus
fn default() -> ExperimentStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ExperimentStatus
impl<'de> Deserialize<'de> for ExperimentStatus
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 Display for ExperimentStatus
impl Display for ExperimentStatus
impl Eq for ExperimentStatus
Source§impl From<&str> for ExperimentStatus
impl From<&str> for ExperimentStatus
Source§impl Hash for ExperimentStatus
impl Hash for ExperimentStatus
Source§impl PartialEq for ExperimentStatus
impl PartialEq for ExperimentStatus
Source§impl Serialize for ExperimentStatus
impl Serialize for ExperimentStatus
impl StructuralPartialEq for ExperimentStatus
Auto Trait Implementations§
impl Freeze for ExperimentStatus
impl RefUnwindSafe for ExperimentStatus
impl Send for ExperimentStatus
impl Sync for ExperimentStatus
impl Unpin for ExperimentStatus
impl UnsafeUnpin for ExperimentStatus
impl UnwindSafe for ExperimentStatus
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.