pub struct MirroringLocation {
pub location: Option<String>,
pub state: Option<String>,
}Expand description
Details about mirroring in a specific cloud location.
This type is not used in any activity, and only used as part of another schema.
Fields§
§location: Option<String>Output only. The cloud location, e.g. “us-central1-a” or “asia-south1”.
state: Option<String>Output only. The current state of the association in this location.
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<'de> Deserialize<'de> for MirroringLocation
impl<'de> Deserialize<'de> for MirroringLocation
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 MirroringLocation
impl Serialize for MirroringLocation
impl Part 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 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