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 duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const 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 for OrderFulfillmentState
impl PartialEq for OrderFulfillmentState
Source§impl Serialize for OrderFulfillmentState
impl Serialize for OrderFulfillmentState
impl Eq for OrderFulfillmentState
impl StructuralPartialEq for OrderFulfillmentState
Auto Trait Implementations§
impl Freeze for OrderFulfillmentState
impl RefUnwindSafe for OrderFulfillmentState
impl Send for OrderFulfillmentState
impl Sync for OrderFulfillmentState
impl Unpin for OrderFulfillmentState
impl UnwindSafe for OrderFulfillmentState
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,
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.