pub struct PrivateServiceConnectEndpoint {
pub id: Option<i32>,
pub gcp_project_id: Option<String>,
pub gcp_vpc_name: Option<String>,
pub gcp_vpc_subnet_name: Option<String>,
pub endpoint_connection_name: Option<String>,
pub status: Option<String>,
}Expand description
Private Service Connect endpoint information
Fields§
§id: Option<i32>Endpoint ID
gcp_project_id: Option<String>GCP project ID
gcp_vpc_name: Option<String>GCP VPC name
gcp_vpc_subnet_name: Option<String>GCP VPC subnet name
endpoint_connection_name: Option<String>Endpoint connection name
status: Option<String>Endpoint status
Trait Implementations§
Source§impl Clone for PrivateServiceConnectEndpoint
impl Clone for PrivateServiceConnectEndpoint
Source§fn clone(&self) -> PrivateServiceConnectEndpoint
fn clone(&self) -> PrivateServiceConnectEndpoint
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<'de> Deserialize<'de> for PrivateServiceConnectEndpoint
impl<'de> Deserialize<'de> for PrivateServiceConnectEndpoint
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 PrivateServiceConnectEndpoint
impl RefUnwindSafe for PrivateServiceConnectEndpoint
impl Send for PrivateServiceConnectEndpoint
impl Sync for PrivateServiceConnectEndpoint
impl Unpin for PrivateServiceConnectEndpoint
impl UnwindSafe for PrivateServiceConnectEndpoint
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