azure_storage_datalake 0.3.0

Azure Data Lake Storage Gen2 crate from the Azure SDK for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod data_lake_client;
mod directory_client;
mod file_client;
mod file_system_client;

use std::fmt::Debug;

pub use data_lake_client::DataLakeClient;
pub use directory_client::DirectoryClient;
pub use file_client::FileClient;
pub use file_system_client::FileSystemClient;

pub trait PathClient: Debug + Clone + Send + Sync {
    fn url(&self) -> azure_core::error::Result<url::Url>;
    fn prepare_request(&self, uri: &str, http_method: http::Method) -> azure_core::Request;
    fn pipeline(&self) -> &azure_core::Pipeline;
    fn context(&self) -> &azure_core::Context;
}