#[non_exhaustive]pub struct ConnectedDeploymentGroup {
pub name: String,
pub locations: Vec<InterceptLocation>,
/* private fields */
}Expand description
The endpoint group’s view of a connected deployment group.
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.name: StringOutput only. The connected deployment group’s resource name, for example:
projects/123456789/locations/global/interceptDeploymentGroups/my-dg.
See https://google.aip.dev/124.
locations: Vec<InterceptLocation>Output only. The list of locations where the deployment group is present.
Implementations§
Trait Implementations§
Source§impl Clone for ConnectedDeploymentGroup
impl Clone for ConnectedDeploymentGroup
Source§fn clone(&self) -> ConnectedDeploymentGroup
fn clone(&self) -> ConnectedDeploymentGroup
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 ConnectedDeploymentGroup
impl Debug for ConnectedDeploymentGroup
Source§impl Default for ConnectedDeploymentGroup
impl Default for ConnectedDeploymentGroup
Source§fn default() -> ConnectedDeploymentGroup
fn default() -> ConnectedDeploymentGroup
Returns the “default value” for a type. Read more
Source§impl Message for ConnectedDeploymentGroup
impl Message for ConnectedDeploymentGroup
Source§impl PartialEq for ConnectedDeploymentGroup
impl PartialEq for ConnectedDeploymentGroup
impl StructuralPartialEq for ConnectedDeploymentGroup
Auto Trait Implementations§
impl Freeze for ConnectedDeploymentGroup
impl RefUnwindSafe for ConnectedDeploymentGroup
impl Send for ConnectedDeploymentGroup
impl Sync for ConnectedDeploymentGroup
impl Unpin for ConnectedDeploymentGroup
impl UnsafeUnpin for ConnectedDeploymentGroup
impl UnwindSafe for ConnectedDeploymentGroup
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