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§
Source§impl GetAttributesResponse
impl GetAttributesResponse
Sourcepub fn new() -> GetAttributesResponse
pub fn new() -> GetAttributesResponse
The response schema for the GetAttributes operation.
Trait Implementations§
Source§impl Clone for GetAttributesResponse
impl Clone for GetAttributesResponse
Source§fn clone(&self) -> GetAttributesResponse
fn clone(&self) -> GetAttributesResponse
Returns a duplicate 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 Debug for GetAttributesResponse
impl Debug for GetAttributesResponse
Source§impl Default for GetAttributesResponse
impl Default for GetAttributesResponse
Source§fn default() -> GetAttributesResponse
fn default() -> GetAttributesResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetAttributesResponse
impl<'de> Deserialize<'de> for GetAttributesResponse
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 for GetAttributesResponse
impl PartialEq for GetAttributesResponse
Source§impl Serialize for GetAttributesResponse
impl Serialize for GetAttributesResponse
impl StructuralPartialEq for GetAttributesResponse
Auto Trait Implementations§
impl Freeze for GetAttributesResponse
impl RefUnwindSafe for GetAttributesResponse
impl Send for GetAttributesResponse
impl Sync for GetAttributesResponse
impl Unpin for GetAttributesResponse
impl UnwindSafe for GetAttributesResponse
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more