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