#[non_exhaustive]pub struct DeleteTagValueRequest {
pub name: String,
pub validate_only: bool,
pub etag: String,
}Expand description
The request message for deleting a TagValue.
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. Resource name for TagValue to be deleted in the format tagValues/456.
validate_only: boolOptional. Set as true to perform the validations necessary for deletion, but not actually perform the action.
etag: StringOptional. The etag known to the client for the expected state of the TagValue. This is to be used for optimistic concurrency.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteTagValueRequest
impl Clone for DeleteTagValueRequest
Source§fn clone(&self) -> DeleteTagValueRequest
fn clone(&self) -> DeleteTagValueRequest
Returns a copy 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 DeleteTagValueRequest
impl Debug for DeleteTagValueRequest
Source§impl Default for DeleteTagValueRequest
impl Default for DeleteTagValueRequest
Source§fn default() -> DeleteTagValueRequest
fn default() -> DeleteTagValueRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteTagValueRequestwhere
DeleteTagValueRequest: Default,
impl<'de> Deserialize<'de> for DeleteTagValueRequestwhere
DeleteTagValueRequest: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for DeleteTagValueRequest
impl Message for DeleteTagValueRequest
Source§impl PartialEq for DeleteTagValueRequest
impl PartialEq for DeleteTagValueRequest
Source§impl Serialize for DeleteTagValueRequest
impl Serialize for DeleteTagValueRequest
impl StructuralPartialEq for DeleteTagValueRequest
Auto Trait Implementations§
impl Freeze for DeleteTagValueRequest
impl RefUnwindSafe for DeleteTagValueRequest
impl Send for DeleteTagValueRequest
impl Sync for DeleteTagValueRequest
impl Unpin for DeleteTagValueRequest
impl UnwindSafe for DeleteTagValueRequest
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