azure_sdk_storage_table 0.41.3

Rust wrappers around Microsoft Azure REST APIs - Table storage crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![recursion_limit = "128"]

extern crate log;
#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate quick_error;

pub mod table_client;
pub use table_client::*;
mod cloud_table;
pub use cloud_table::*;
mod table_entity;
pub use table_entity::*;
mod batch;
pub use batch::*;
pub mod de;