pub enum OutcomeStatus {
Success,
Partial,
Failure,
}Expand description
Outcome status for completed trajectories.
Variants§
Trait Implementations§
Source§impl Clone for OutcomeStatus
impl Clone for OutcomeStatus
Source§fn clone(&self) -> OutcomeStatus
fn clone(&self) -> OutcomeStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for OutcomeStatus
impl ComposeSchema for OutcomeStatus
Source§impl Debug for OutcomeStatus
impl Debug for OutcomeStatus
Source§impl<'de> Deserialize<'de> for OutcomeStatus
impl<'de> Deserialize<'de> for OutcomeStatus
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 OutcomeStatus
impl Display for OutcomeStatus
Source§impl FromStr for OutcomeStatus
impl FromStr for OutcomeStatus
Source§impl Hash for OutcomeStatus
impl Hash for OutcomeStatus
Source§impl PartialEq for OutcomeStatus
impl PartialEq for OutcomeStatus
Source§impl Serialize for OutcomeStatus
impl Serialize for OutcomeStatus
Source§impl ToSchema for OutcomeStatus
impl ToSchema for OutcomeStatus
impl Copy for OutcomeStatus
impl Eq for OutcomeStatus
impl StructuralPartialEq for OutcomeStatus
Auto Trait Implementations§
impl Freeze for OutcomeStatus
impl RefUnwindSafe for OutcomeStatus
impl Send for OutcomeStatus
impl Sync for OutcomeStatus
impl Unpin for OutcomeStatus
impl UnwindSafe for OutcomeStatus
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.