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
//! This module contains implementations of `Dummy` trait
#[cfg(feature = "base64")]
pub mod base64;
#[cfg(feature = "bigdecimal-rs")]
pub mod bigdecimal;
#[cfg(feature = "bson_oid")]
pub mod bson_oid;
#[cfg(feature = "chrono")]
pub mod chrono;
#[cfg(feature = "chrono-tz")]
pub mod chrono_tz;
#[cfg(feature = "random_color")]
pub mod color;
#[cfg(feature = "rust_decimal")]
pub mod decimal;
#[cfg(feature = "either")]
pub mod either;
#[cfg(feature = "email_address")]
pub mod email_address;
#[cfg(feature = "ferroid")]
pub mod ferroid;
#[cfg(feature = "geo-types")]
pub mod geo;
#[cfg(feature = "glam")]
pub mod glam;
#[cfg(feature = "http")]
pub mod http;
#[cfg(feature = "indexmap")]
pub mod indexmap;
#[cfg(feature = "semver")]
pub mod semver;
#[cfg(feature = "serde_json")]
pub mod serde_json;
pub mod std;
#[cfg(feature = "time")]
pub mod time;
#[cfg(feature = "ulid")]
pub mod ulid;
#[cfg(feature = "url")]
pub mod url;
#[cfg(feature = "uuid")]
pub mod uuid;
#[cfg(feature = "zerocopy")]
pub mod zerocopy_byteorder;