pub struct SubnetGroup {
pub name: String,
pub description: String,
pub vpc_id: String,
pub subnet_ids: Vec<String>,
pub arn: String,
pub supported_network_types: Vec<String>,
}Fields§
§name: String§description: String§vpc_id: String§subnet_ids: Vec<String>§arn: String§supported_network_types: Vec<String>Trait Implementations§
Source§impl Clone for SubnetGroup
impl Clone for SubnetGroup
Source§fn clone(&self) -> SubnetGroup
fn clone(&self) -> SubnetGroup
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 Debug for SubnetGroup
impl Debug for SubnetGroup
Source§impl<'de> Deserialize<'de> for SubnetGroup
impl<'de> Deserialize<'de> for SubnetGroup
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
Auto Trait Implementations§
impl Freeze for SubnetGroup
impl RefUnwindSafe for SubnetGroup
impl Send for SubnetGroup
impl Sync for SubnetGroup
impl Unpin for SubnetGroup
impl UnsafeUnpin for SubnetGroup
impl UnwindSafe for SubnetGroup
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