pub struct CreateCustomerGroupRequest {
pub idempotency_key: Option<String>,
pub group: CustomerGroup,
}
Fields§
§idempotency_key: Option<String>
The idempotency key for the request. For more information, see Idempotency.
group: CustomerGroup
The customer group to create.
Trait Implementations§
Source§impl Clone for CreateCustomerGroupRequest
impl Clone for CreateCustomerGroupRequest
Source§fn clone(&self) -> CreateCustomerGroupRequest
fn clone(&self) -> CreateCustomerGroupRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for CreateCustomerGroupRequest
impl Debug for CreateCustomerGroupRequest
Source§impl Default for CreateCustomerGroupRequest
impl Default for CreateCustomerGroupRequest
Source§fn default() -> CreateCustomerGroupRequest
fn default() -> CreateCustomerGroupRequest
Returns the “default value” for a type. Read more
impl Eq for CreateCustomerGroupRequest
impl StructuralPartialEq for CreateCustomerGroupRequest
Auto Trait Implementations§
impl Freeze for CreateCustomerGroupRequest
impl RefUnwindSafe for CreateCustomerGroupRequest
impl Send for CreateCustomerGroupRequest
impl Sync for CreateCustomerGroupRequest
impl Unpin for CreateCustomerGroupRequest
impl UnwindSafe for CreateCustomerGroupRequest
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.