#[non_exhaustive]pub struct GetDeploymentGroupRequest {
pub name: String,
/* private fields */
}Expand description
The request message for the GetDeploymentGroup method.
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: StringRequired. The name of the deployment group to retrieve. Format: ‘projects/{project_id}/locations/{location}/deploymentGroups/{deployment_group}’.
Implementations§
Trait Implementations§
Source§impl Clone for GetDeploymentGroupRequest
impl Clone for GetDeploymentGroupRequest
Source§fn clone(&self) -> GetDeploymentGroupRequest
fn clone(&self) -> GetDeploymentGroupRequest
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 GetDeploymentGroupRequest
impl Debug for GetDeploymentGroupRequest
Source§impl Default for GetDeploymentGroupRequest
impl Default for GetDeploymentGroupRequest
Source§fn default() -> GetDeploymentGroupRequest
fn default() -> GetDeploymentGroupRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetDeploymentGroupRequest
impl Message for GetDeploymentGroupRequest
impl StructuralPartialEq for GetDeploymentGroupRequest
Auto Trait Implementations§
impl Freeze for GetDeploymentGroupRequest
impl RefUnwindSafe for GetDeploymentGroupRequest
impl Send for GetDeploymentGroupRequest
impl Sync for GetDeploymentGroupRequest
impl Unpin for GetDeploymentGroupRequest
impl UnsafeUnpin for GetDeploymentGroupRequest
impl UnwindSafe for GetDeploymentGroupRequest
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