#[non_exhaustive]pub struct GetTargetRequest {
pub name: String,
/* private fields */
}
Expand description
The request object for GetTarget
.
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: String
Required. Name of the Target
. Format must be
projects/{project_id}/locations/{location_name}/targets/{target_name}
.
Implementations§
Trait Implementations§
Source§impl Clone for GetTargetRequest
impl Clone for GetTargetRequest
Source§fn clone(&self) -> GetTargetRequest
fn clone(&self) -> GetTargetRequest
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 GetTargetRequest
impl Debug for GetTargetRequest
Source§impl Default for GetTargetRequest
impl Default for GetTargetRequest
Source§fn default() -> GetTargetRequest
fn default() -> GetTargetRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetTargetRequest
impl Message for GetTargetRequest
Source§impl PartialEq for GetTargetRequest
impl PartialEq for GetTargetRequest
impl StructuralPartialEq for GetTargetRequest
Auto Trait Implementations§
impl Freeze for GetTargetRequest
impl RefUnwindSafe for GetTargetRequest
impl Send for GetTargetRequest
impl Sync for GetTargetRequest
impl Unpin for GetTargetRequest
impl UnwindSafe for GetTargetRequest
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