azure-sdk-rust 0.1.2

**Under very heavy development** It will most likely break! Microsoft Azure SDK for Rust. Originally designed to stay as close as possible to aws-sdk-rust but design decision changed to make it Azure specific. An abstract library will be used to manage the differences between the two for those needing cross cloud access.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[derive(Debug, Clone, PartialEq)]
pub struct ListContainerOptions {
    pub max_results: u32,
    pub include_metadata: bool,
    pub next_marker: Option<String>,
    pub prefix: Option<String>,
    pub timeout: Option<u64>,
}

pub const LIST_CONTAINER_OPTIONS_DEFAULT: ListContainerOptions = ListContainerOptions {
    max_results: 5000,
    include_metadata: false,
    next_marker: None,
    prefix: None,
    timeout: None,
};