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
sourceimpl Clone for OrderFulfillmentState
impl Clone for OrderFulfillmentState
sourcefn clone(&self) -> OrderFulfillmentState
fn clone(&self) -> OrderFulfillmentState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OrderFulfillmentState
impl Debug for OrderFulfillmentState
sourceimpl<'de> Deserialize<'de> for OrderFulfillmentState
impl<'de> Deserialize<'de> for OrderFulfillmentState
sourcefn 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
sourceimpl PartialEq<OrderFulfillmentState> for OrderFulfillmentState
impl PartialEq<OrderFulfillmentState> for OrderFulfillmentState
sourcefn eq(&self, other: &OrderFulfillmentState) -> bool
fn eq(&self, other: &OrderFulfillmentState) -> bool
sourceimpl 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<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,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.