#[non_exhaustive]pub struct DeleteVolumeSnapshotRequest {
pub name: String,
/* private fields */
}Expand description
Message for deleting named Volume snapshot.
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 name of the snapshot to delete.
Implementations§
Trait Implementations§
Source§impl Clone for DeleteVolumeSnapshotRequest
impl Clone for DeleteVolumeSnapshotRequest
Source§fn clone(&self) -> DeleteVolumeSnapshotRequest
fn clone(&self) -> DeleteVolumeSnapshotRequest
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 DeleteVolumeSnapshotRequest
impl Debug for DeleteVolumeSnapshotRequest
Source§impl Default for DeleteVolumeSnapshotRequest
impl Default for DeleteVolumeSnapshotRequest
Source§fn default() -> DeleteVolumeSnapshotRequest
fn default() -> DeleteVolumeSnapshotRequest
Returns the “default value” for a type. Read more
impl StructuralPartialEq for DeleteVolumeSnapshotRequest
Auto Trait Implementations§
impl Freeze for DeleteVolumeSnapshotRequest
impl RefUnwindSafe for DeleteVolumeSnapshotRequest
impl Send for DeleteVolumeSnapshotRequest
impl Sync for DeleteVolumeSnapshotRequest
impl Unpin for DeleteVolumeSnapshotRequest
impl UnwindSafe for DeleteVolumeSnapshotRequest
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