pub struct PrivateServiceConnectEndpoints {
pub psc_service_id: Option<i32>,
pub endpoints: Option<Vec<PrivateServiceConnectEndpoint>>,
}Expand description
Private Service Connect endpoints response
Fields§
§psc_service_id: Option<i32>PSC service ID
endpoints: Option<Vec<PrivateServiceConnectEndpoint>>List of PSC endpoints
Trait Implementations§
Source§impl Clone for PrivateServiceConnectEndpoints
impl Clone for PrivateServiceConnectEndpoints
Source§fn clone(&self) -> PrivateServiceConnectEndpoints
fn clone(&self) -> PrivateServiceConnectEndpoints
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 PrivateServiceConnectEndpoints
impl<'de> Deserialize<'de> for PrivateServiceConnectEndpoints
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 PrivateServiceConnectEndpoints
impl RefUnwindSafe for PrivateServiceConnectEndpoints
impl Send for PrivateServiceConnectEndpoints
impl Sync for PrivateServiceConnectEndpoints
impl Unpin for PrivateServiceConnectEndpoints
impl UnwindSafe for PrivateServiceConnectEndpoints
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