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
sourceimpl Clone for CreateCustomerGroupRequest
impl Clone for CreateCustomerGroupRequest
sourcefn clone(&self) -> CreateCustomerGroupRequest
fn clone(&self) -> CreateCustomerGroupRequest
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CreateCustomerGroupRequest
impl Debug for CreateCustomerGroupRequest
sourceimpl Default for CreateCustomerGroupRequest
impl Default for CreateCustomerGroupRequest
sourcefn default() -> CreateCustomerGroupRequest
fn default() -> CreateCustomerGroupRequest
Returns the “default value” for a type. Read more
sourceimpl PartialEq<CreateCustomerGroupRequest> for CreateCustomerGroupRequest
impl PartialEq<CreateCustomerGroupRequest> for CreateCustomerGroupRequest
sourcefn eq(&self, other: &CreateCustomerGroupRequest) -> bool
fn eq(&self, other: &CreateCustomerGroupRequest) -> bool
impl Eq for CreateCustomerGroupRequest
impl StructuralEq for CreateCustomerGroupRequest
impl StructuralPartialEq for CreateCustomerGroupRequest
Auto Trait Implementations
impl RefUnwindSafe for CreateCustomerGroupRequest
impl Send for CreateCustomerGroupRequest
impl Sync for CreateCustomerGroupRequest
impl Unpin for CreateCustomerGroupRequest
impl UnwindSafe for CreateCustomerGroupRequest
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.