forked from Azure/azure-sdk-for-rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlib.rs
More file actions
21 lines (21 loc) · 991 Bytes
/
Copy pathlib.rs
File metadata and controls
21 lines (21 loc) · 991 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![allow(clippy::module_inception)]
#![allow(clippy::too_many_arguments)]
#![allow(clippy::ptr_arg)]
#![allow(clippy::large_enum_variant)]
#![allow(clippy::derive_partial_eq_without_eq)]
#[cfg(feature = "package-preview-2022-11")]
pub mod package_preview_2022_11;
#[cfg(all(feature = "package-preview-2022-11", not(feature = "no-default-tag")))]
pub use package_preview_2022_11::*;
#[cfg(feature = "package-preview-2022-10")]
pub mod package_preview_2022_10;
#[cfg(all(feature = "package-preview-2022-10", not(feature = "no-default-tag")))]
pub use package_preview_2022_10::*;
#[cfg(feature = "package-2022-09-01-preview")]
pub mod package_2022_09_01_preview;
#[cfg(all(feature = "package-2022-09-01-preview", not(feature = "no-default-tag")))]
pub use package_2022_09_01_preview::*;
#[cfg(feature = "package-2022-08-01-preview")]
pub mod package_2022_08_01_preview;
#[cfg(all(feature = "package-2022-08-01-preview", not(feature = "no-default-tag")))]
pub use package_2022_08_01_preview::*;