#[non_exhaustive]pub struct VpcPeeringConnectivity {
pub vpc: String,
/* private fields */
}Expand description
The details of the VPC where the source database is located in Google Cloud. We will use this information to set up the VPC peering connection between Cloud SQL and this VPC.
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.vpc: StringThe name of the VPC network to peer with the Cloud SQL private network.
Implementations§
Trait Implementations§
Source§impl Clone for VpcPeeringConnectivity
impl Clone for VpcPeeringConnectivity
Source§fn clone(&self) -> VpcPeeringConnectivity
fn clone(&self) -> VpcPeeringConnectivity
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 VpcPeeringConnectivity
impl Debug for VpcPeeringConnectivity
Source§impl Default for VpcPeeringConnectivity
impl Default for VpcPeeringConnectivity
Source§fn default() -> VpcPeeringConnectivity
fn default() -> VpcPeeringConnectivity
Returns the “default value” for a type. Read more
Source§impl Message for VpcPeeringConnectivity
impl Message for VpcPeeringConnectivity
Source§impl PartialEq for VpcPeeringConnectivity
impl PartialEq for VpcPeeringConnectivity
impl StructuralPartialEq for VpcPeeringConnectivity
Auto Trait Implementations§
impl Freeze for VpcPeeringConnectivity
impl RefUnwindSafe for VpcPeeringConnectivity
impl Send for VpcPeeringConnectivity
impl Sync for VpcPeeringConnectivity
impl Unpin for VpcPeeringConnectivity
impl UnwindSafe for VpcPeeringConnectivity
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