#[non_exhaustive]pub struct DeleteReplicationRequest {
pub name: String,
/* private fields */
}Expand description
DeleteReplicationRequest deletes a replication.
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 replication resource name, in the format
projects/*/locations/*/volumes/*/replications/{replication_id}
Implementations§
Trait Implementations§
Source§impl Clone for DeleteReplicationRequest
impl Clone for DeleteReplicationRequest
Source§fn clone(&self) -> DeleteReplicationRequest
fn clone(&self) -> DeleteReplicationRequest
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 DeleteReplicationRequest
impl Debug for DeleteReplicationRequest
Source§impl Default for DeleteReplicationRequest
impl Default for DeleteReplicationRequest
Source§fn default() -> DeleteReplicationRequest
fn default() -> DeleteReplicationRequest
Returns the “default value” for a type. Read more
Source§impl Message for DeleteReplicationRequest
impl Message for DeleteReplicationRequest
Source§impl PartialEq for DeleteReplicationRequest
impl PartialEq for DeleteReplicationRequest
impl StructuralPartialEq for DeleteReplicationRequest
Auto Trait Implementations§
impl Freeze for DeleteReplicationRequest
impl RefUnwindSafe for DeleteReplicationRequest
impl Send for DeleteReplicationRequest
impl Sync for DeleteReplicationRequest
impl Unpin for DeleteReplicationRequest
impl UnsafeUnpin for DeleteReplicationRequest
impl UnwindSafe for DeleteReplicationRequest
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