tytanic_utils/lib.rs
1//! A utility library for tytanic and its internal crates.
2//!
3//! This library makes _*no stability guarantees*_ at the moment and likely
4//! won't ever.
5
6pub mod assert;
7pub mod fmt;
8pub mod fs;
9pub mod path;
10pub mod result;
11pub mod typst;
12
13/// Re-exports of useful traits and types.
14pub mod prelude {
15 pub use result::ResultEx;
16
17 use super::*;
18}
19
20mod private {
21 pub(crate) trait Sealed {}
22
23 impl<T, E> Sealed for Result<T, E> {}
24}