pub struct ReplicationSourceStatusRsync {
pub address: Option<String>,
pub port: Option<i32>,
pub ssh_keys: Option<String>,
}Expand description
rsync contains status information for Rsync-based replication.
Fields§
§address: Option<String>address is the address to connect to for incoming SSH replication connections.
port: Option<i32>port is the SSH port to connect to for incoming SSH replication connections.
ssh_keys: Option<String>sshKeys is the name of a Secret that contains the SSH keys to be used for authentication. If not provided in .spec.rsync.sshKeys, SSH keys will be generated and the appropriate keys for the remote side will be placed here.
Trait Implementations§
Source§impl Clone for ReplicationSourceStatusRsync
impl Clone for ReplicationSourceStatusRsync
Source§fn clone(&self) -> ReplicationSourceStatusRsync
fn clone(&self) -> ReplicationSourceStatusRsync
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 ReplicationSourceStatusRsync
impl Debug for ReplicationSourceStatusRsync
Source§impl Default for ReplicationSourceStatusRsync
impl Default for ReplicationSourceStatusRsync
Source§fn default() -> ReplicationSourceStatusRsync
fn default() -> ReplicationSourceStatusRsync
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplicationSourceStatusRsync
impl<'de> Deserialize<'de> for ReplicationSourceStatusRsync
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ReplicationSourceStatusRsync
Auto Trait Implementations§
impl Freeze for ReplicationSourceStatusRsync
impl RefUnwindSafe for ReplicationSourceStatusRsync
impl Send for ReplicationSourceStatusRsync
impl Sync for ReplicationSourceStatusRsync
impl Unpin for ReplicationSourceStatusRsync
impl UnsafeUnpin for ReplicationSourceStatusRsync
impl UnwindSafe for ReplicationSourceStatusRsync
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