pub struct CreateCustomerGroupResponse {
pub errors: Option<Vec<Error>>,
pub group: CustomerGroup,
}
Fields
errors: Option<Vec<Error>>
Any errors that occurred during the request.
group: CustomerGroup
The successfully created customer group.
Trait Implementations
sourceimpl Clone for CreateCustomerGroupResponse
impl Clone for CreateCustomerGroupResponse
sourcefn clone(&self) -> CreateCustomerGroupResponse
fn clone(&self) -> CreateCustomerGroupResponse
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 CreateCustomerGroupResponse
impl Debug for CreateCustomerGroupResponse
sourceimpl Default for CreateCustomerGroupResponse
impl Default for CreateCustomerGroupResponse
sourcefn default() -> CreateCustomerGroupResponse
fn default() -> CreateCustomerGroupResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for CreateCustomerGroupResponse
impl<'de> Deserialize<'de> for CreateCustomerGroupResponse
sourcefn 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
sourceimpl PartialEq<CreateCustomerGroupResponse> for CreateCustomerGroupResponse
impl PartialEq<CreateCustomerGroupResponse> for CreateCustomerGroupResponse
sourcefn eq(&self, other: &CreateCustomerGroupResponse) -> bool
fn eq(&self, other: &CreateCustomerGroupResponse) -> bool
impl Eq for CreateCustomerGroupResponse
impl StructuralEq for CreateCustomerGroupResponse
impl StructuralPartialEq for CreateCustomerGroupResponse
Auto Trait Implementations
impl RefUnwindSafe for CreateCustomerGroupResponse
impl Send for CreateCustomerGroupResponse
impl Sync for CreateCustomerGroupResponse
impl Unpin for CreateCustomerGroupResponse
impl UnwindSafe for CreateCustomerGroupResponse
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.