azure_sdk_storage_account 0.41.3

Rust wrappers around Microsoft Azure REST APIs - Blob storage account crate
Documentation
#![recursion_limit = "128"]

#[macro_use]
extern crate log;
pub mod account;
pub mod prelude;

use azure_sdk_storage_core::client::Client;

pub trait Account<C>
where
    C: Client,
{
    #[allow(clippy::needless_lifetimes)]
    fn get_account_information<'a>(
        &'a self,
    ) -> account::requests::GetAccountInformationBuilder<'a, C>;
}

impl<C> Account<C> for C
where
    C: Client,
{
    #[allow(clippy::needless_lifetimes)]
    fn get_account_information<'a>(
        &'a self,
    ) -> account::requests::GetAccountInformationBuilder<'a, C> {
        account::requests::GetAccountInformationBuilder::new(self)
    }
}