pub struct AzureStorage {
pub auth_type: Option<String>,
pub client_id: Option<String>,
pub client_secret: Option<String>,
pub storage_account: Option<String>,
pub storage_container_name: Option<String>,
pub tenant_id: Option<String>,
}Fields§
§auth_type: Option<String>§client_id: Option<String>§client_secret: Option<String>§storage_account: Option<String>§storage_container_name: Option<String>§tenant_id: Option<String>creds
Implementations§
Source§impl AzureStorage
impl AzureStorage
pub fn new() -> AzureStorage
Trait Implementations§
Source§impl Clone for AzureStorage
impl Clone for AzureStorage
Source§fn clone(&self) -> AzureStorage
fn clone(&self) -> AzureStorage
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AzureStorage
impl Debug for AzureStorage
Source§impl Default for AzureStorage
impl Default for AzureStorage
Source§fn default() -> AzureStorage
fn default() -> AzureStorage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureStorage
impl<'de> Deserialize<'de> for AzureStorage
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 AzureStorage
impl PartialEq for AzureStorage
Source§fn eq(&self, other: &AzureStorage) -> bool
fn eq(&self, other: &AzureStorage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AzureStorage
impl Serialize for AzureStorage
impl StructuralPartialEq for AzureStorage
Auto Trait Implementations§
impl Freeze for AzureStorage
impl RefUnwindSafe for AzureStorage
impl Send for AzureStorage
impl Sync for AzureStorage
impl Unpin for AzureStorage
impl UnsafeUnpin for AzureStorage
impl UnwindSafe for AzureStorage
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