identity_core/common/
mod.rs

1// Copyright 2020-2022 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Definitions of common types (`Url`, `Timestamp`, JSON types, etc).
5
6pub use self::context::Context;
7pub use self::key_comparable::KeyComparable;
8pub use self::one_or_many::OneOrMany;
9pub use self::one_or_set::OneOrSet;
10pub use self::ordered_set::OrderedSet;
11pub use self::single_struct_error::*;
12pub use self::timestamp::Duration;
13pub use self::timestamp::Timestamp;
14pub use self::url::Url;
15pub use product_common::object::Object;
16pub use product_common::object::Value;
17pub use string_or_url::StringOrUrl;
18
19mod context;
20mod key_comparable;
21mod one_or_many;
22mod one_or_set;
23mod ordered_set;
24mod single_struct_error;
25mod string_or_url;
26mod timestamp;
27mod url;