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