#[non_exhaustive]pub struct UpdateSiteAddressInput {
pub site_id: Option<String>,
pub address_type: Option<AddressType>,
pub address: Option<Address>,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.site_id: Option<String>The ID or the Amazon Resource Name (ARN) of the site.
address_type: Option<AddressType>The type of the address.
address: Option<Address>The address for the site.
Implementations§
source§impl UpdateSiteAddressInput
impl UpdateSiteAddressInput
sourcepub fn builder() -> UpdateSiteAddressInputBuilder
pub fn builder() -> UpdateSiteAddressInputBuilder
Creates a new builder-style object to manufacture UpdateSiteAddressInput.
Trait Implementations§
source§impl Clone for UpdateSiteAddressInput
impl Clone for UpdateSiteAddressInput
source§fn clone(&self) -> UpdateSiteAddressInput
fn clone(&self) -> UpdateSiteAddressInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for UpdateSiteAddressInput
impl Debug for UpdateSiteAddressInput
source§impl PartialEq<UpdateSiteAddressInput> for UpdateSiteAddressInput
impl PartialEq<UpdateSiteAddressInput> for UpdateSiteAddressInput
source§fn eq(&self, other: &UpdateSiteAddressInput) -> bool
fn eq(&self, other: &UpdateSiteAddressInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for UpdateSiteAddressInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateSiteAddressInput
impl Send for UpdateSiteAddressInput
impl Sync for UpdateSiteAddressInput
impl Unpin for UpdateSiteAddressInput
impl UnwindSafe for UpdateSiteAddressInput
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