#[non_exhaustive]pub struct DeleteAuthorizedViewRequest {
pub name: String,
pub etag: String,
/* private fields */
}Expand description
Request message for google.bigtable.admin.v2.BigtableTableAdmin.DeleteAuthorizedView
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. The unique name of the AuthorizedView to be deleted.
Values are of the form
projects/{project}/instances/{instance}/tables/{table}/authorizedViews/{authorized_view}.
etag: StringOptional. The current etag of the AuthorizedView. If an etag is provided and does not match the current etag of the AuthorizedView, deletion will be blocked and an ABORTED error will be returned.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteAuthorizedViewRequest
impl Clone for DeleteAuthorizedViewRequest
Source§fn clone(&self) -> DeleteAuthorizedViewRequest
fn clone(&self) -> DeleteAuthorizedViewRequest
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 DeleteAuthorizedViewRequest
impl Debug for DeleteAuthorizedViewRequest
Source§impl Default for DeleteAuthorizedViewRequest
impl Default for DeleteAuthorizedViewRequest
Source§fn default() -> DeleteAuthorizedViewRequest
fn default() -> DeleteAuthorizedViewRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteAuthorizedViewRequest
Auto Trait Implementations§
impl Freeze for DeleteAuthorizedViewRequest
impl RefUnwindSafe for DeleteAuthorizedViewRequest
impl Send for DeleteAuthorizedViewRequest
impl Sync for DeleteAuthorizedViewRequest
impl Unpin for DeleteAuthorizedViewRequest
impl UnwindSafe for DeleteAuthorizedViewRequest
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