pub enum PortalCustomerUpdateAllowedUpdates {
Address,
Email,
Name,
Phone,
Shipping,
TaxId,
}
Expand description
The types of customer updates that are supported. When empty, customers are not updateable.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PortalCustomerUpdateAllowedUpdates
impl Clone for PortalCustomerUpdateAllowedUpdates
Source§fn clone(&self) -> PortalCustomerUpdateAllowedUpdates
fn clone(&self) -> PortalCustomerUpdateAllowedUpdates
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 FromValueOpt for PortalCustomerUpdateAllowedUpdates
impl FromValueOpt for PortalCustomerUpdateAllowedUpdates
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for PortalCustomerUpdateAllowedUpdates
impl PartialEq for PortalCustomerUpdateAllowedUpdates
Source§fn eq(&self, other: &PortalCustomerUpdateAllowedUpdates) -> bool
fn eq(&self, other: &PortalCustomerUpdateAllowedUpdates) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for PortalCustomerUpdateAllowedUpdates
impl Eq for PortalCustomerUpdateAllowedUpdates
impl StructuralPartialEq for PortalCustomerUpdateAllowedUpdates
Auto Trait Implementations§
impl Freeze for PortalCustomerUpdateAllowedUpdates
impl RefUnwindSafe for PortalCustomerUpdateAllowedUpdates
impl Send for PortalCustomerUpdateAllowedUpdates
impl Sync for PortalCustomerUpdateAllowedUpdates
impl Unpin for PortalCustomerUpdateAllowedUpdates
impl UnwindSafe for PortalCustomerUpdateAllowedUpdates
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