pub struct TargetLocation {
pub storage_account_resource_id: Option<String>,
pub account_key: Option<String>,
}
Expand description
Target Location details for optional copy of backups
Fields§
§storage_account_resource_id: Option<String>
Resource Id of the storage account copying backups.
account_key: Option<String>
Storage Account Key.
Implementations§
Trait Implementations§
source§impl Clone for TargetLocation
impl Clone for TargetLocation
source§fn clone(&self) -> TargetLocation
fn clone(&self) -> TargetLocation
Returns a copy 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 TargetLocation
impl Debug for TargetLocation
source§impl Default for TargetLocation
impl Default for TargetLocation
source§fn default() -> TargetLocation
fn default() -> TargetLocation
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TargetLocation
impl<'de> Deserialize<'de> for TargetLocation
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 PartialEq<TargetLocation> for TargetLocation
impl PartialEq<TargetLocation> for TargetLocation
source§fn eq(&self, other: &TargetLocation) -> bool
fn eq(&self, other: &TargetLocation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for TargetLocation
impl Serialize for TargetLocation
impl StructuralPartialEq for TargetLocation
Auto Trait Implementations§
impl RefUnwindSafe for TargetLocation
impl Send for TargetLocation
impl Sync for TargetLocation
impl Unpin for TargetLocation
impl UnwindSafe for TargetLocation
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