pub struct SubscriptionNetworking {
pub deployment_cidr: Option<String>,
pub vpc_id: Option<String>,
pub subnet_id: Option<String>,
}Expand description
Networking configuration in a subscription region
Fields§
§deployment_cidr: Option<String>Deployment CIDR
vpc_id: Option<String>VPC ID
subnet_id: Option<String>Subnet ID
Trait Implementations§
Source§impl Clone for SubscriptionNetworking
impl Clone for SubscriptionNetworking
Source§fn clone(&self) -> SubscriptionNetworking
fn clone(&self) -> SubscriptionNetworking
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 SubscriptionNetworking
impl Debug for SubscriptionNetworking
Source§impl<'de> Deserialize<'de> for SubscriptionNetworking
impl<'de> Deserialize<'de> for SubscriptionNetworking
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 SubscriptionNetworking
impl RefUnwindSafe for SubscriptionNetworking
impl Send for SubscriptionNetworking
impl Sync for SubscriptionNetworking
impl Unpin for SubscriptionNetworking
impl UnwindSafe for SubscriptionNetworking
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