moniker/
lib.rs

1// Copyright 2019 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod child_name;
6mod error;
7mod extended_moniker;
8mod moniker;
9#[cfg(feature = "serde")]
10mod serde_ext;
11
12pub use self::child_name::ChildName;
13pub use self::error::MonikerError;
14pub use self::extended_moniker::{ExtendedMoniker, EXTENDED_MONIKER_COMPONENT_MANAGER_STR};
15pub use self::moniker::Moniker;