pub enum OrderEventValidationState {
Start,
Placed,
Captured,
Refunded,
Shipped,
Invalid,
}Variants§
Trait Implementations§
Source§impl Clone for OrderEventValidationState
impl Clone for OrderEventValidationState
Source§fn clone(&self) -> OrderEventValidationState
fn clone(&self) -> OrderEventValidationState
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 OrderEventValidationState
impl Debug for OrderEventValidationState
Source§impl PartialEq for OrderEventValidationState
impl PartialEq for OrderEventValidationState
Source§fn eq(&self, other: &OrderEventValidationState) -> bool
fn eq(&self, other: &OrderEventValidationState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for OrderEventValidationState
impl Eq for OrderEventValidationState
impl StructuralPartialEq for OrderEventValidationState
Auto Trait Implementations§
impl Freeze for OrderEventValidationState
impl RefUnwindSafe for OrderEventValidationState
impl Send for OrderEventValidationState
impl Sync for OrderEventValidationState
impl Unpin for OrderEventValidationState
impl UnsafeUnpin for OrderEventValidationState
impl UnwindSafe for OrderEventValidationState
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