#[non_exhaustive]pub struct LookupKeyResponse {
pub parent: String,
pub name: String,
/* private fields */
}Expand description
Response message for LookupKey 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.parent: StringThe project that owns the key with the value specified in the request.
name: StringThe resource name of the API key. If the API key has been purged, resource name is empty.
Implementations§
Source§impl LookupKeyResponse
impl LookupKeyResponse
Trait Implementations§
Source§impl Clone for LookupKeyResponse
impl Clone for LookupKeyResponse
Source§fn clone(&self) -> LookupKeyResponse
fn clone(&self) -> LookupKeyResponse
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 LookupKeyResponse
impl Debug for LookupKeyResponse
Source§impl Default for LookupKeyResponse
impl Default for LookupKeyResponse
Source§fn default() -> LookupKeyResponse
fn default() -> LookupKeyResponse
Returns the “default value” for a type. Read more
Source§impl Message for LookupKeyResponse
impl Message for LookupKeyResponse
Source§impl PartialEq for LookupKeyResponse
impl PartialEq for LookupKeyResponse
impl StructuralPartialEq for LookupKeyResponse
Auto Trait Implementations§
impl Freeze for LookupKeyResponse
impl RefUnwindSafe for LookupKeyResponse
impl Send for LookupKeyResponse
impl Sync for LookupKeyResponse
impl Unpin for LookupKeyResponse
impl UnsafeUnpin for LookupKeyResponse
impl UnwindSafe for LookupKeyResponse
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