pub struct RemoteCluster {
pub cluster: Option<String>,
pub uid: Option<String>,
}Expand description
Details of the remote cluster associated with this cluster in a cross cluster replication setup.
This type is not used in any activity, and only used as part of another schema.
Fields§
§cluster: Option<String>Output only. The full resource path of the remote cluster in the format: projects//locations//clusters/
uid: Option<String>Output only. The unique identifier of the remote cluster.
Trait Implementations§
Source§impl Clone for RemoteCluster
impl Clone for RemoteCluster
Source§fn clone(&self) -> RemoteCluster
fn clone(&self) -> RemoteCluster
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 RemoteCluster
impl Debug for RemoteCluster
Source§impl Default for RemoteCluster
impl Default for RemoteCluster
Source§fn default() -> RemoteCluster
fn default() -> RemoteCluster
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RemoteCluster
impl<'de> Deserialize<'de> for RemoteCluster
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
Source§impl Serialize for RemoteCluster
impl Serialize for RemoteCluster
impl Part for RemoteCluster
Auto Trait Implementations§
impl Freeze for RemoteCluster
impl RefUnwindSafe for RemoteCluster
impl Send for RemoteCluster
impl Sync for RemoteCluster
impl Unpin for RemoteCluster
impl UnwindSafe for RemoteCluster
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