pub enum AzureStorageService {
Blob,
File,
Adls,
}Expand description
The service that a connection string refers to. The type influences interpretation of endpoint-related fields during parsing.
Variants§
Blob
Azure Blob Storage.
File
Azure File Storage.
Adls
Azure Data Lake Storage Gen2.
Backed by Blob Storage but exposed through a different endpoint (dfs).
Trait Implementations§
Source§impl PartialEq for AzureStorageService
impl PartialEq for AzureStorageService
impl StructuralPartialEq for AzureStorageService
Auto Trait Implementations§
impl Freeze for AzureStorageService
impl RefUnwindSafe for AzureStorageService
impl Send for AzureStorageService
impl Sync for AzureStorageService
impl Unpin for AzureStorageService
impl UnsafeUnpin for AzureStorageService
impl UnwindSafe for AzureStorageService
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