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