pub struct RetrieveCustomerGroupResponse {
pub errors: Option<Vec<Error>>,
pub group: CustomerGroup,
}
Expand description
This is a model struct for RetrieveCustomerGroupResponse type
Fields§
§errors: Option<Vec<Error>>
Any errors that occurred during the request.
group: CustomerGroup
The retrieved customer group.
Trait Implementations§
source§impl Clone for RetrieveCustomerGroupResponse
impl Clone for RetrieveCustomerGroupResponse
source§fn clone(&self) -> RetrieveCustomerGroupResponse
fn clone(&self) -> RetrieveCustomerGroupResponse
Returns a copy 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 Default for RetrieveCustomerGroupResponse
impl Default for RetrieveCustomerGroupResponse
source§fn default() -> RetrieveCustomerGroupResponse
fn default() -> RetrieveCustomerGroupResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for RetrieveCustomerGroupResponse
impl<'de> Deserialize<'de> for RetrieveCustomerGroupResponse
source§fn 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
source§impl PartialEq<RetrieveCustomerGroupResponse> for RetrieveCustomerGroupResponse
impl PartialEq<RetrieveCustomerGroupResponse> for RetrieveCustomerGroupResponse
source§fn eq(&self, other: &RetrieveCustomerGroupResponse) -> bool
fn eq(&self, other: &RetrieveCustomerGroupResponse) -> bool
impl Eq for RetrieveCustomerGroupResponse
impl StructuralEq for RetrieveCustomerGroupResponse
impl StructuralPartialEq for RetrieveCustomerGroupResponse
Auto Trait Implementations§
impl RefUnwindSafe for RetrieveCustomerGroupResponse
impl Send for RetrieveCustomerGroupResponse
impl Sync for RetrieveCustomerGroupResponse
impl Unpin for RetrieveCustomerGroupResponse
impl UnwindSafe for RetrieveCustomerGroupResponse
Blanket Implementations§
source§impl<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,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.