pub struct GetAttributesResponse {
pub buyer: Option<Box<GetAttributesResponseBuyer>>,
pub errors: Option<Vec<Error>>,
}Expand description
GetAttributesResponse : The response schema for the GetAttributes operation.
Fields
buyer: Option<Box<GetAttributesResponseBuyer>>errors: Option<Vec<Error>>A list of error responses returned when a request is unsuccessful.
Implementations
sourceimpl GetAttributesResponse
impl GetAttributesResponse
sourcepub fn new() -> GetAttributesResponse
pub fn new() -> GetAttributesResponse
The response schema for the GetAttributes operation.
Trait Implementations
sourceimpl Clone for GetAttributesResponse
impl Clone for GetAttributesResponse
sourcefn clone(&self) -> GetAttributesResponse
fn clone(&self) -> GetAttributesResponse
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 GetAttributesResponse
impl Debug for GetAttributesResponse
sourceimpl Default for GetAttributesResponse
impl Default for GetAttributesResponse
sourcefn default() -> GetAttributesResponse
fn default() -> GetAttributesResponse
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for GetAttributesResponse
impl<'de> Deserialize<'de> for GetAttributesResponse
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<GetAttributesResponse> for GetAttributesResponse
impl PartialEq<GetAttributesResponse> for GetAttributesResponse
sourcefn eq(&self, other: &GetAttributesResponse) -> bool
fn eq(&self, other: &GetAttributesResponse) -> bool
sourceimpl Serialize for GetAttributesResponse
impl Serialize for GetAttributesResponse
impl StructuralPartialEq for GetAttributesResponse
Auto Trait Implementations
impl RefUnwindSafe for GetAttributesResponse
impl Send for GetAttributesResponse
impl Sync for GetAttributesResponse
impl Unpin for GetAttributesResponse
impl UnwindSafe for GetAttributesResponse
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