#[non_exhaustive]pub struct DeleteDataTaxonomyRequest {
pub name: String,
pub etag: String,
/* private fields */
}๐Deprecated
Expand description
Delete DataTaxonomy request.
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๐Deprecated
Required. The resource name of the DataTaxonomy: projects/{project_number}/locations/{location_id}/dataTaxonomies/{data_taxonomy_id}
etag: String๐Deprecated
Optional. If the client provided etag value does not match the current etag value,the DeleteDataTaxonomy method returns an ABORTED error.
Implementationsยง
Trait Implementationsยง
Sourceยงimpl Clone for DeleteDataTaxonomyRequest
impl Clone for DeleteDataTaxonomyRequest
Sourceยงfn clone(&self) -> DeleteDataTaxonomyRequest
fn clone(&self) -> DeleteDataTaxonomyRequest
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 DeleteDataTaxonomyRequest
impl Debug for DeleteDataTaxonomyRequest
Sourceยงimpl Default for DeleteDataTaxonomyRequest
impl Default for DeleteDataTaxonomyRequest
Sourceยงfn default() -> DeleteDataTaxonomyRequest
fn default() -> DeleteDataTaxonomyRequest
Returns the โdefault valueโ for a type. Read more
Sourceยงimpl Message for DeleteDataTaxonomyRequest
impl Message for DeleteDataTaxonomyRequest
Sourceยงimpl PartialEq for DeleteDataTaxonomyRequest
impl PartialEq for DeleteDataTaxonomyRequest
Sourceยงfn eq(&self, other: &DeleteDataTaxonomyRequest) -> bool
fn eq(&self, other: &DeleteDataTaxonomyRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteDataTaxonomyRequest
Auto Trait Implementationsยง
impl Freeze for DeleteDataTaxonomyRequest
impl RefUnwindSafe for DeleteDataTaxonomyRequest
impl Send for DeleteDataTaxonomyRequest
impl Sync for DeleteDataTaxonomyRequest
impl Unpin for DeleteDataTaxonomyRequest
impl UnwindSafe for DeleteDataTaxonomyRequest
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