pub struct PortalCustomerUpdate {
pub allowed_updates: Vec<PortalCustomerUpdateAllowedUpdates>,
pub enabled: bool,
}
Fields§
§allowed_updates: Vec<PortalCustomerUpdateAllowedUpdates>
The types of customer updates that are supported. When empty, customers are not updateable.
enabled: bool
Whether the feature is enabled.
Trait Implementations§
Source§impl Clone for PortalCustomerUpdate
impl Clone for PortalCustomerUpdate
Source§fn clone(&self) -> PortalCustomerUpdate
fn clone(&self) -> PortalCustomerUpdate
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 PortalCustomerUpdate
impl Debug for PortalCustomerUpdate
Source§impl Deserialize for PortalCustomerUpdate
impl Deserialize for PortalCustomerUpdate
Source§impl FromValueOpt for PortalCustomerUpdate
impl FromValueOpt for PortalCustomerUpdate
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PortalCustomerUpdate
impl RefUnwindSafe for PortalCustomerUpdate
impl Send for PortalCustomerUpdate
impl Sync for PortalCustomerUpdate
impl Unpin for PortalCustomerUpdate
impl UnwindSafe for PortalCustomerUpdate
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