#[non_exhaustive]pub struct GetDeploymentGroupRevisionRequest {
pub name: String,
/* private fields */
}Expand description
The request message for the GetDeploymentGroupRevision 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 revision to retrieve. Format: ‘projects/{project_id}/locations/{location}/deploymentGroups/{deployment_group}/revisions/{revision}’.
Implementations§
Trait Implementations§
Source§impl Clone for GetDeploymentGroupRevisionRequest
impl Clone for GetDeploymentGroupRevisionRequest
Source§fn clone(&self) -> GetDeploymentGroupRevisionRequest
fn clone(&self) -> GetDeploymentGroupRevisionRequest
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 Default for GetDeploymentGroupRevisionRequest
impl Default for GetDeploymentGroupRevisionRequest
Source§fn default() -> GetDeploymentGroupRevisionRequest
fn default() -> GetDeploymentGroupRevisionRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for GetDeploymentGroupRevisionRequest
impl PartialEq for GetDeploymentGroupRevisionRequest
Source§fn eq(&self, other: &GetDeploymentGroupRevisionRequest) -> bool
fn eq(&self, other: &GetDeploymentGroupRevisionRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetDeploymentGroupRevisionRequest
Auto Trait Implementations§
impl Freeze for GetDeploymentGroupRevisionRequest
impl RefUnwindSafe for GetDeploymentGroupRevisionRequest
impl Send for GetDeploymentGroupRevisionRequest
impl Sync for GetDeploymentGroupRevisionRequest
impl Unpin for GetDeploymentGroupRevisionRequest
impl UnsafeUnpin for GetDeploymentGroupRevisionRequest
impl UnwindSafe for GetDeploymentGroupRevisionRequest
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