Skip to main content

osom_lib_strings/immutable/
mod.rs

1//! Holds definition of [`ImmutableString`] and its [`ImmutableStringBuilder`].
2mod errors;
3mod immutable_string;
4mod immutable_string_builder;
5mod weak_string;
6
7pub use errors::*;
8pub use immutable_string::*;
9pub use immutable_string_builder::*;
10pub use weak_string::*;
11
12#[cfg(feature = "serde")]
13pub mod serde;
14
15cfg_select! {
16    feature="std" => {
17        #[cfg_attr(docsrs, doc(cfg(feature = "std")))]
18        pub mod std;
19    },
20    _ => {}
21}