#[non_exhaustive]pub struct GetReplicationCycleRequest {
pub name: String,
/* private fields */
}Expand description
Request message for ‘GetReplicationCycle’ request.
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 ReplicationCycle.
Implementations§
Trait Implementations§
Source§impl Clone for GetReplicationCycleRequest
impl Clone for GetReplicationCycleRequest
Source§fn clone(&self) -> GetReplicationCycleRequest
fn clone(&self) -> GetReplicationCycleRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetReplicationCycleRequest
impl Debug for GetReplicationCycleRequest
Source§impl Default for GetReplicationCycleRequest
impl Default for GetReplicationCycleRequest
Source§fn default() -> GetReplicationCycleRequest
fn default() -> GetReplicationCycleRequest
Returns the “default value” for a type. Read more
Source§impl Message for GetReplicationCycleRequest
impl Message for GetReplicationCycleRequest
Source§impl PartialEq for GetReplicationCycleRequest
impl PartialEq for GetReplicationCycleRequest
Source§fn eq(&self, other: &GetReplicationCycleRequest) -> bool
fn eq(&self, other: &GetReplicationCycleRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetReplicationCycleRequest
Auto Trait Implementations§
impl Freeze for GetReplicationCycleRequest
impl RefUnwindSafe for GetReplicationCycleRequest
impl Send for GetReplicationCycleRequest
impl Sync for GetReplicationCycleRequest
impl Unpin for GetReplicationCycleRequest
impl UnsafeUnpin for GetReplicationCycleRequest
impl UnwindSafe for GetReplicationCycleRequest
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