#[non_exhaustive]pub struct GetNamespacedTagKeyRequest {
pub name: String,
/* private fields */
}Expand description
The request message for getting a TagKey by its namespaced name.
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. A namespaced tag key name in the format
{parentId}/{tagKeyShort}, such as 42/foo for a key with short name
“foo” under the organization with ID 42 or r2-d2/bar for a key with short
name “bar” under the project r2-d2.
Implementations§
Trait Implementations§
Source§impl Clone for GetNamespacedTagKeyRequest
impl Clone for GetNamespacedTagKeyRequest
Source§fn clone(&self) -> GetNamespacedTagKeyRequest
fn clone(&self) -> GetNamespacedTagKeyRequest
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 GetNamespacedTagKeyRequest
impl Debug for GetNamespacedTagKeyRequest
Source§impl Default for GetNamespacedTagKeyRequest
impl Default for GetNamespacedTagKeyRequest
Source§fn default() -> GetNamespacedTagKeyRequest
fn default() -> GetNamespacedTagKeyRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetNamespacedTagKeyRequest
impl Message for GetNamespacedTagKeyRequest
impl StructuralPartialEq for GetNamespacedTagKeyRequest
Auto Trait Implementations§
impl Freeze for GetNamespacedTagKeyRequest
impl RefUnwindSafe for GetNamespacedTagKeyRequest
impl Send for GetNamespacedTagKeyRequest
impl Sync for GetNamespacedTagKeyRequest
impl Unpin for GetNamespacedTagKeyRequest
impl UnwindSafe for GetNamespacedTagKeyRequest
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