pub struct StorageAccount {
pub name: Option<String>,
pub key: Option<String>,
}Expand description
Access information for a storage account.
Fields§
§name: Option<String>Specifies the name of the storage account.
key: Option<String>Specifies the key used to access the storage account.
Implementations§
Trait Implementations§
Source§impl Clone for StorageAccount
impl Clone for StorageAccount
Source§fn clone(&self) -> StorageAccount
fn clone(&self) -> StorageAccount
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 StorageAccount
impl Debug for StorageAccount
Source§impl Default for StorageAccount
impl Default for StorageAccount
Source§fn default() -> StorageAccount
fn default() -> StorageAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StorageAccount
impl<'de> Deserialize<'de> for StorageAccount
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 for StorageAccount
impl PartialEq for StorageAccount
Source§impl Serialize for StorageAccount
impl Serialize for StorageAccount
impl StructuralPartialEq for StorageAccount
Auto Trait Implementations§
impl Freeze for StorageAccount
impl RefUnwindSafe for StorageAccount
impl Send for StorageAccount
impl Sync for StorageAccount
impl Unpin for StorageAccount
impl UnwindSafe for StorageAccount
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