pub enum OutcomeState {
Pending,
Complete,
Expired,
}Variants§
Trait Implementations§
Source§impl Clone for OutcomeState
impl Clone for OutcomeState
Source§fn clone(&self) -> OutcomeState
fn clone(&self) -> OutcomeState
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 OutcomeState
impl Debug for OutcomeState
Source§impl<'de> Deserialize<'de> for OutcomeState
impl<'de> Deserialize<'de> for OutcomeState
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
impl Eq for OutcomeState
Source§impl PartialEq for OutcomeState
impl PartialEq for OutcomeState
Source§fn eq(&self, other: &OutcomeState) -> bool
fn eq(&self, other: &OutcomeState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for OutcomeState
impl Serialize for OutcomeState
impl StructuralPartialEq for OutcomeState
Auto Trait Implementations§
impl Freeze for OutcomeState
impl RefUnwindSafe for OutcomeState
impl Send for OutcomeState
impl Sync for OutcomeState
impl Unpin for OutcomeState
impl UnsafeUnpin for OutcomeState
impl UnwindSafe for OutcomeState
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