#[non_exhaustive]pub struct DeleteSnapshotRequest {
pub name: String,
/* private fields */
}Expand description
Request message for google.bigtable.admin.v2.BigtableTableAdmin.DeleteSnapshot
Note: This is a private alpha release of Cloud Bigtable snapshots. This feature is not currently available to most Cloud Bigtable customers. This feature might be changed in backward-incompatible ways and is not recommended for production use. It is not subject to any SLA or deprecation policy.
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 snapshot to be deleted.
Values are of the form
projects/{project}/instances/{instance}/clusters/{cluster}/snapshots/{snapshot}.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteSnapshotRequest
impl Clone for DeleteSnapshotRequest
Source§fn clone(&self) -> DeleteSnapshotRequest
fn clone(&self) -> DeleteSnapshotRequest
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 DeleteSnapshotRequest
impl Debug for DeleteSnapshotRequest
Source§impl Default for DeleteSnapshotRequest
impl Default for DeleteSnapshotRequest
Source§fn default() -> DeleteSnapshotRequest
fn default() -> DeleteSnapshotRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteSnapshotRequest
impl Message for DeleteSnapshotRequest
Source§impl PartialEq for DeleteSnapshotRequest
impl PartialEq for DeleteSnapshotRequest
impl StructuralPartialEq for DeleteSnapshotRequest
Auto Trait Implementations§
impl Freeze for DeleteSnapshotRequest
impl RefUnwindSafe for DeleteSnapshotRequest
impl Send for DeleteSnapshotRequest
impl Sync for DeleteSnapshotRequest
impl Unpin for DeleteSnapshotRequest
impl UnwindSafe for DeleteSnapshotRequest
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