pub struct RetrieveOrderCustomAttributeDefinitionResponse {
pub custom_attribute_definition: Option<Box<CustomAttributeDefinition>>,
pub errors: Option<Vec<Error>>,
}Expand description
RetrieveOrderCustomAttributeDefinitionResponse : Represents a response from getting an order custom attribute definition.
Fields§
§custom_attribute_definition: Option<Box<CustomAttributeDefinition>>§errors: Option<Vec<Error>>Any errors that occurred during the request.
Implementations§
Source§impl RetrieveOrderCustomAttributeDefinitionResponse
impl RetrieveOrderCustomAttributeDefinitionResponse
Sourcepub fn new() -> RetrieveOrderCustomAttributeDefinitionResponse
pub fn new() -> RetrieveOrderCustomAttributeDefinitionResponse
Represents a response from getting an order custom attribute definition.
Trait Implementations§
Source§impl Clone for RetrieveOrderCustomAttributeDefinitionResponse
impl Clone for RetrieveOrderCustomAttributeDefinitionResponse
Source§fn clone(&self) -> RetrieveOrderCustomAttributeDefinitionResponse
fn clone(&self) -> RetrieveOrderCustomAttributeDefinitionResponse
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 RetrieveOrderCustomAttributeDefinitionResponse
impl Default for RetrieveOrderCustomAttributeDefinitionResponse
Source§fn default() -> RetrieveOrderCustomAttributeDefinitionResponse
fn default() -> RetrieveOrderCustomAttributeDefinitionResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RetrieveOrderCustomAttributeDefinitionResponse
impl<'de> Deserialize<'de> for RetrieveOrderCustomAttributeDefinitionResponse
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 RetrieveOrderCustomAttributeDefinitionResponse
Auto Trait Implementations§
impl Freeze for RetrieveOrderCustomAttributeDefinitionResponse
impl RefUnwindSafe for RetrieveOrderCustomAttributeDefinitionResponse
impl Send for RetrieveOrderCustomAttributeDefinitionResponse
impl Sync for RetrieveOrderCustomAttributeDefinitionResponse
impl Unpin for RetrieveOrderCustomAttributeDefinitionResponse
impl UnsafeUnpin for RetrieveOrderCustomAttributeDefinitionResponse
impl UnwindSafe for RetrieveOrderCustomAttributeDefinitionResponse
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