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