#[non_exhaustive]pub struct RemoteCluster {
pub cluster: String,
pub uid: String,
/* private fields */
}Expand description
Details of the remote cluster associated with this cluster in a cross cluster replication setup.
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.cluster: StringThe full resource path of the remote cluster in the format: projects/<project>/locations/<region>/clusters/<cluster-id>
uid: StringOutput only. The unique identifier of the remote cluster.
Implementations§
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 Message for RemoteCluster
impl Message for RemoteCluster
Source§impl PartialEq for RemoteCluster
impl PartialEq for RemoteCluster
impl StructuralPartialEq 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