#[non_exhaustive]pub struct GetDeploymentEventRequest {
pub name: String,
/* private fields */
}Expand description
Request for getting a DeploymentEvent.
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 event to retrieve. Format: projects/{project}/locations/{location}/insightsConfigs/{insights_config}/deploymentEvents/{uuid}
Implementations§
Trait Implementations§
Source§impl Clone for GetDeploymentEventRequest
impl Clone for GetDeploymentEventRequest
Source§fn clone(&self) -> GetDeploymentEventRequest
fn clone(&self) -> GetDeploymentEventRequest
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 GetDeploymentEventRequest
impl Debug for GetDeploymentEventRequest
Source§impl Default for GetDeploymentEventRequest
impl Default for GetDeploymentEventRequest
Source§fn default() -> GetDeploymentEventRequest
fn default() -> GetDeploymentEventRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetDeploymentEventRequest
impl Message for GetDeploymentEventRequest
impl StructuralPartialEq for GetDeploymentEventRequest
Auto Trait Implementations§
impl Freeze for GetDeploymentEventRequest
impl RefUnwindSafe for GetDeploymentEventRequest
impl Send for GetDeploymentEventRequest
impl Sync for GetDeploymentEventRequest
impl Unpin for GetDeploymentEventRequest
impl UnsafeUnpin for GetDeploymentEventRequest
impl UnwindSafe for GetDeploymentEventRequest
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