-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
76 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// This file is part of ICU4X. For terms of use, please see the file | ||
// called LICENSE at the top level of the ICU4X source tree | ||
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). | ||
|
||
//! Scaffolding traits and types for the datetime crate. | ||
//! | ||
//! Items in this module are mostly for trait bounds. Most users should not need to reference | ||
//! these items in userland code. | ||
mod calendar; | ||
|
||
pub(crate) use calendar::AnyCalendarProvider; | ||
pub use calendar::CalMarkers; | ||
pub use calendar::CldrCalendar; | ||
pub use calendar::FullDataCalMarkers; | ||
pub use calendar::NoDataCalMarkers; | ||
|
||
/// Trait marking other traits that are considered unstable and should not generally be | ||
/// implemented outside of the datetime crate. | ||
/// | ||
/// <div class="stab unstable"> | ||
/// 🚧 This trait is considered unstable; it may change at any time, in breaking or non-breaking ways, | ||
/// including in SemVer minor releases. Do not implement this trait in userland. | ||
/// </div> | ||
pub trait UnstableSealed {} |
Oops, something went wrong.