pub struct AvailabilityZone {
pub name: Option<String>,
}
Expand description
Name of the availability zone.
Fields§
§name: Option<String>
Id for the availability zone.
Trait Implementations§
Source§impl Clone for AvailabilityZone
impl Clone for AvailabilityZone
Source§fn clone(&self) -> AvailabilityZone
fn clone(&self) -> AvailabilityZone
Returns a duplicate 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 AvailabilityZone
impl Debug for AvailabilityZone
Source§impl Default for AvailabilityZone
impl Default for AvailabilityZone
Source§fn default() -> AvailabilityZone
fn default() -> AvailabilityZone
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AvailabilityZone
impl<'de> Deserialize<'de> for AvailabilityZone
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
Source§impl PartialEq for AvailabilityZone
impl PartialEq for AvailabilityZone
impl StructuralPartialEq for AvailabilityZone
Auto Trait Implementations§
impl Freeze for AvailabilityZone
impl RefUnwindSafe for AvailabilityZone
impl Send for AvailabilityZone
impl Sync for AvailabilityZone
impl Unpin for AvailabilityZone
impl UnwindSafe for AvailabilityZone
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