pub enum OrderTransitionLabel {
CapturePayment,
CancelBeforePayment,
MarkBackordered,
PackPaidOrder,
RefundPaidOrder,
ShipPackedOrder,
ConfirmDelivery,
RefundDeliveredOrder,
ReceiveBackorderPayment,
CancelBackorder,
}Variants§
CapturePayment
CancelBeforePayment
MarkBackordered
PackPaidOrder
RefundPaidOrder
ShipPackedOrder
ConfirmDelivery
RefundDeliveredOrder
ReceiveBackorderPayment
CancelBackorder
Trait Implementations§
Source§impl Clone for OrderTransitionLabel
impl Clone for OrderTransitionLabel
Source§fn clone(&self) -> OrderTransitionLabel
fn clone(&self) -> OrderTransitionLabel
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 OrderTransitionLabel
impl Debug for OrderTransitionLabel
Source§impl PartialEq for OrderTransitionLabel
impl PartialEq for OrderTransitionLabel
Source§fn eq(&self, other: &OrderTransitionLabel) -> bool
fn eq(&self, other: &OrderTransitionLabel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OrderTransitionLabel
impl Eq for OrderTransitionLabel
impl StructuralPartialEq for OrderTransitionLabel
Auto Trait Implementations§
impl Freeze for OrderTransitionLabel
impl RefUnwindSafe for OrderTransitionLabel
impl Send for OrderTransitionLabel
impl Sync for OrderTransitionLabel
impl Unpin for OrderTransitionLabel
impl UnsafeUnpin for OrderTransitionLabel
impl UnwindSafe for OrderTransitionLabel
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