pub struct RetrieveMerchantCustomAttributeDefinitionResponse {
pub custom_attribute_definition: Option<Box<CustomAttributeDefinition>>,
pub errors: Option<Vec<Error>>,
}Expand description
RetrieveMerchantCustomAttributeDefinitionResponse : Represents a RetrieveMerchantCustomAttributeDefinition response. Either custom_attribute_definition or errors is present in the response.
Fields§
§custom_attribute_definition: Option<Box<CustomAttributeDefinition>>§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl RetrieveMerchantCustomAttributeDefinitionResponse
impl RetrieveMerchantCustomAttributeDefinitionResponse
Sourcepub fn new() -> RetrieveMerchantCustomAttributeDefinitionResponse
pub fn new() -> RetrieveMerchantCustomAttributeDefinitionResponse
Represents a RetrieveMerchantCustomAttributeDefinition response. Either custom_attribute_definition or errors is present in the response.
Trait Implementations§
Source§impl Clone for RetrieveMerchantCustomAttributeDefinitionResponse
impl Clone for RetrieveMerchantCustomAttributeDefinitionResponse
Source§fn clone(&self) -> RetrieveMerchantCustomAttributeDefinitionResponse
fn clone(&self) -> RetrieveMerchantCustomAttributeDefinitionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RetrieveMerchantCustomAttributeDefinitionResponse
impl Default for RetrieveMerchantCustomAttributeDefinitionResponse
Source§fn default() -> RetrieveMerchantCustomAttributeDefinitionResponse
fn default() -> RetrieveMerchantCustomAttributeDefinitionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveMerchantCustomAttributeDefinitionResponse
impl<'de> Deserialize<'de> for RetrieveMerchantCustomAttributeDefinitionResponse
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
impl StructuralPartialEq for RetrieveMerchantCustomAttributeDefinitionResponse
Auto Trait Implementations§
impl Freeze for RetrieveMerchantCustomAttributeDefinitionResponse
impl RefUnwindSafe for RetrieveMerchantCustomAttributeDefinitionResponse
impl Send for RetrieveMerchantCustomAttributeDefinitionResponse
impl Sync for RetrieveMerchantCustomAttributeDefinitionResponse
impl Unpin for RetrieveMerchantCustomAttributeDefinitionResponse
impl UnsafeUnpin for RetrieveMerchantCustomAttributeDefinitionResponse
impl UnwindSafe for RetrieveMerchantCustomAttributeDefinitionResponse
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