pub enum OrderFulfillmentState {
Proposed,
Reserved,
Prepared,
Completed,
Canceled,
Failed,
}
Expand description
The current state of this fulfillment.
Variants§
Proposed
Indicates that the fulfillment has been proposed.
Reserved
Indicates that the fulfillment has been reserved.
Prepared
Indicates that the fulfillment has been prepared.
Completed
Indicates that the fulfillment was successfully completed.
Canceled
Indicates that the fulfillment was canceled.
Failed
Indicates that the fulfillment failed to be completed, but was not explicitly canceled.
Trait Implementations§
source§impl Clone for OrderFulfillmentState
impl Clone for OrderFulfillmentState
source§fn clone(&self) -> OrderFulfillmentState
fn clone(&self) -> OrderFulfillmentState
Returns a copy 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 Debug for OrderFulfillmentState
impl Debug for OrderFulfillmentState
source§impl<'de> Deserialize<'de> for OrderFulfillmentState
impl<'de> Deserialize<'de> for OrderFulfillmentState
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<OrderFulfillmentState> for OrderFulfillmentState
impl PartialEq<OrderFulfillmentState> for OrderFulfillmentState
source§fn eq(&self, other: &OrderFulfillmentState) -> bool
fn eq(&self, other: &OrderFulfillmentState) -> bool
source§impl Serialize for OrderFulfillmentState
impl Serialize for OrderFulfillmentState
impl Eq for OrderFulfillmentState
impl StructuralEq for OrderFulfillmentState
impl StructuralPartialEq for OrderFulfillmentState
Auto Trait Implementations§
impl RefUnwindSafe for OrderFulfillmentState
impl Send for OrderFulfillmentState
impl Sync for OrderFulfillmentState
impl Unpin for OrderFulfillmentState
impl UnwindSafe for OrderFulfillmentState
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.