pub struct PrivateServiceConnectService {
pub id: Option<i32>,
pub connection_host_name: Option<String>,
pub service_attachment_name: Option<String>,
pub status: Option<String>,
}Expand description
Private Service Connect service information
Fields§
§id: Option<i32>PSC service ID
connection_host_name: Option<String>Connection host name for the PSC service
service_attachment_name: Option<String>GCP service attachment name
status: Option<String>PSC service status
Trait Implementations§
Source§impl Clone for PrivateServiceConnectService
impl Clone for PrivateServiceConnectService
Source§fn clone(&self) -> PrivateServiceConnectService
fn clone(&self) -> PrivateServiceConnectService
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 PrivateServiceConnectService
impl Debug for PrivateServiceConnectService
Source§impl<'de> Deserialize<'de> for PrivateServiceConnectService
impl<'de> Deserialize<'de> for PrivateServiceConnectService
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 PrivateServiceConnectService
impl RefUnwindSafe for PrivateServiceConnectService
impl Send for PrivateServiceConnectService
impl Sync for PrivateServiceConnectService
impl Unpin for PrivateServiceConnectService
impl UnwindSafe for PrivateServiceConnectService
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