#[non_exhaustive]pub struct DeleteMaterializedViewRequest {
pub name: String,
pub etag: String,
/* private fields */
}Expand description
Request message for BigtableInstanceAdmin.DeleteMaterializedView.
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 materialized view to be deleted.
Format:
projects/{project}/instances/{instance}/materializedViews/{materialized_view}.
etag: StringOptional. The current etag of the materialized view. If an etag is provided and does not match the current etag of the materialized view, deletion will be blocked and an ABORTED error will be returned.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteMaterializedViewRequest
impl Clone for DeleteMaterializedViewRequest
Source§fn clone(&self) -> DeleteMaterializedViewRequest
fn clone(&self) -> DeleteMaterializedViewRequest
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 Default for DeleteMaterializedViewRequest
impl Default for DeleteMaterializedViewRequest
Source§fn default() -> DeleteMaterializedViewRequest
fn default() -> DeleteMaterializedViewRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteMaterializedViewRequest
impl PartialEq for DeleteMaterializedViewRequest
Source§fn eq(&self, other: &DeleteMaterializedViewRequest) -> bool
fn eq(&self, other: &DeleteMaterializedViewRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DeleteMaterializedViewRequest
Auto Trait Implementations§
impl Freeze for DeleteMaterializedViewRequest
impl RefUnwindSafe for DeleteMaterializedViewRequest
impl Send for DeleteMaterializedViewRequest
impl Sync for DeleteMaterializedViewRequest
impl Unpin for DeleteMaterializedViewRequest
impl UnwindSafe for DeleteMaterializedViewRequest
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