#[non_exhaustive]pub struct GetKeyHandleRequest {
pub name: String,
/* private fields */
}Expand description
Request message for GetKeyHandle.
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. Name of the KeyHandle resource,
e.g.
projects/{PROJECT_ID}/locations/{LOCATION}/keyHandles/{KEY_HANDLE_ID}.
Implementations§
Trait Implementations§
Source§impl Clone for GetKeyHandleRequest
impl Clone for GetKeyHandleRequest
Source§fn clone(&self) -> GetKeyHandleRequest
fn clone(&self) -> GetKeyHandleRequest
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 GetKeyHandleRequest
impl Debug for GetKeyHandleRequest
Source§impl Default for GetKeyHandleRequest
impl Default for GetKeyHandleRequest
Source§fn default() -> GetKeyHandleRequest
fn default() -> GetKeyHandleRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetKeyHandleRequest
impl Message for GetKeyHandleRequest
Source§impl PartialEq for GetKeyHandleRequest
impl PartialEq for GetKeyHandleRequest
impl StructuralPartialEq for GetKeyHandleRequest
Auto Trait Implementations§
impl Freeze for GetKeyHandleRequest
impl RefUnwindSafe for GetKeyHandleRequest
impl Send for GetKeyHandleRequest
impl Sync for GetKeyHandleRequest
impl Unpin for GetKeyHandleRequest
impl UnsafeUnpin for GetKeyHandleRequest
impl UnwindSafe for GetKeyHandleRequest
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