1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
#![crate_name = "openstack"]
#![crate_type = "lib"]
#![deny(const_err,
dead_code,
extra_requirement_in_impl,
improper_ctypes,
legacy_directory_ownership,
missing_copy_implementations,
missing_debug_implementations,
missing_docs,
non_shorthand_field_patterns,
no_mangle_generic_items,
overflowing_literals,
path_statements ,
patterns_in_fns_without_body,
plugin_as_library,
private_in_public,
private_no_mangle_fns,
private_no_mangle_statics,
safe_extern_statics,
trivial_casts,
trivial_numeric_casts,
unconditional_recursion,
unions_with_drop_fields,
unsafe_code,
unused,
unused_allocation,
unused_comparisons,
unused_extern_crates,
unused_import_braces,
unused_parens,
unused_qualifications,
unused_results,
while_true)]
#[cfg(feature = "compute")]
extern crate chrono;
#[macro_use]
extern crate hyper;
#[cfg(feature = "tls")]
extern crate hyper_rustls;
#[macro_use]
extern crate log;
extern crate serde;
#[macro_use]
extern crate serde_derive;
extern crate serde_json;
#[cfg(test)] #[macro_use]
extern crate yup_hyper_mock;
pub mod auth;
mod common;
#[cfg(feature = "compute")]
pub mod compute;
mod identity;
pub mod service;
mod session;
mod utils;
pub use common::ApiError;
pub use common::ApiResult;
pub use common::ApiVersion;
pub use common::ApiVersionRequest;
pub use common::Sort;
pub use session::Session;