pub enum OrderItemActionType {
Add,
Modify,
Delete,
NoChange,
}Expand description
action to be performed on the product
Variants§
Add
Add a new product
Modify
Modify an existing product
Delete
Delete an existing product
NoChange
No change to the product
Trait Implementations§
Source§impl Clone for OrderItemActionType
impl Clone for OrderItemActionType
Source§fn clone(&self) -> OrderItemActionType
fn clone(&self) -> OrderItemActionType
Returns a duplicate 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 OrderItemActionType
impl Debug for OrderItemActionType
Source§impl<'de> Deserialize<'de> for OrderItemActionType
impl<'de> Deserialize<'de> for OrderItemActionType
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
Auto Trait Implementations§
impl Freeze for OrderItemActionType
impl RefUnwindSafe for OrderItemActionType
impl Send for OrderItemActionType
impl Sync for OrderItemActionType
impl Unpin for OrderItemActionType
impl UnsafeUnpin for OrderItemActionType
impl UnwindSafe for OrderItemActionType
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