#[non_exhaustive]pub struct MirroringLocation {
pub location: String,
pub state: State,
/* private fields */
}Expand description
Details about mirroring in a specific cloud location.
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.location: StringOutput only. The cloud location, e.g. “us-central1-a” or “asia-south1”.
state: StateOutput only. The current state of the association in this location.
Implementations§
Source§impl MirroringLocation
impl MirroringLocation
Trait Implementations§
Source§impl Clone for MirroringLocation
impl Clone for MirroringLocation
Source§fn clone(&self) -> MirroringLocation
fn clone(&self) -> MirroringLocation
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 MirroringLocation
impl Debug for MirroringLocation
Source§impl Default for MirroringLocation
impl Default for MirroringLocation
Source§fn default() -> MirroringLocation
fn default() -> MirroringLocation
Returns the “default value” for a type. Read more
Source§impl Message for MirroringLocation
impl Message for MirroringLocation
Source§impl PartialEq for MirroringLocation
impl PartialEq for MirroringLocation
impl StructuralPartialEq for MirroringLocation
Auto Trait Implementations§
impl Freeze for MirroringLocation
impl RefUnwindSafe for MirroringLocation
impl Send for MirroringLocation
impl Sync for MirroringLocation
impl Unpin for MirroringLocation
impl UnsafeUnpin for MirroringLocation
impl UnwindSafe for MirroringLocation
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