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