pub struct UpdateCustomerCustomAttributeDefinitionRequest {
pub custom_attribute_definition: Box<CustomAttributeDefinition>,
pub idempotency_key: Option<Option<String>>,
}Expand description
UpdateCustomerCustomAttributeDefinitionRequest : Represents an UpdateCustomerCustomAttributeDefinition request.
Fields§
§custom_attribute_definition: Box<CustomAttributeDefinition>§idempotency_key: Option<Option<String>>A unique identifier for this request, used to ensure idempotency. For more information, see Idempotency.
Implementations§
Source§impl UpdateCustomerCustomAttributeDefinitionRequest
impl UpdateCustomerCustomAttributeDefinitionRequest
Sourcepub fn new(
custom_attribute_definition: CustomAttributeDefinition,
) -> UpdateCustomerCustomAttributeDefinitionRequest
pub fn new( custom_attribute_definition: CustomAttributeDefinition, ) -> UpdateCustomerCustomAttributeDefinitionRequest
Represents an UpdateCustomerCustomAttributeDefinition request.
Trait Implementations§
Source§impl Clone for UpdateCustomerCustomAttributeDefinitionRequest
impl Clone for UpdateCustomerCustomAttributeDefinitionRequest
Source§fn clone(&self) -> UpdateCustomerCustomAttributeDefinitionRequest
fn clone(&self) -> UpdateCustomerCustomAttributeDefinitionRequest
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 UpdateCustomerCustomAttributeDefinitionRequest
impl Default for UpdateCustomerCustomAttributeDefinitionRequest
Source§fn default() -> UpdateCustomerCustomAttributeDefinitionRequest
fn default() -> UpdateCustomerCustomAttributeDefinitionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateCustomerCustomAttributeDefinitionRequest
impl<'de> Deserialize<'de> for UpdateCustomerCustomAttributeDefinitionRequest
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 UpdateCustomerCustomAttributeDefinitionRequest
Auto Trait Implementations§
impl Freeze for UpdateCustomerCustomAttributeDefinitionRequest
impl RefUnwindSafe for UpdateCustomerCustomAttributeDefinitionRequest
impl Send for UpdateCustomerCustomAttributeDefinitionRequest
impl Sync for UpdateCustomerCustomAttributeDefinitionRequest
impl Unpin for UpdateCustomerCustomAttributeDefinitionRequest
impl UnsafeUnpin for UpdateCustomerCustomAttributeDefinitionRequest
impl UnwindSafe for UpdateCustomerCustomAttributeDefinitionRequest
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