pub struct AzureConfig {
pub use_azurite: bool,
}Expand description
Represents configuration for Azure Storage.
Fields§
§use_azurite: boolEnables support for Azurite.
Requests for Azurite are expected to use host suffix
blob.core.windows.net.localhost.
Any URLs that use the az scheme will be rewritten to use that suffix.
This setting is primarily intended for local testing.
Trait Implementations§
Source§impl Clone for AzureConfig
impl Clone for AzureConfig
Source§fn clone(&self) -> AzureConfig
fn clone(&self) -> AzureConfig
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 AzureConfig
impl Debug for AzureConfig
Source§impl Default for AzureConfig
impl Default for AzureConfig
Source§fn default() -> AzureConfig
fn default() -> AzureConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AzureConfig
impl<'de> Deserialize<'de> for AzureConfig
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
Auto Trait Implementations§
impl Freeze for AzureConfig
impl RefUnwindSafe for AzureConfig
impl Send for AzureConfig
impl Sync for AzureConfig
impl Unpin for AzureConfig
impl UnwindSafe for AzureConfig
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