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