1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[macro_use]
pub mod macros;

pub mod prelude;

pub(crate) use set_arc::SetArc;
mod set_arc;

pub(crate) mod zstr;

pub(crate) mod extension_traits;
pub type Str = ::std::borrow::Cow<'static, str>;

#[derive(Default)]
pub struct InvariantLifetimeMarker<'lifetime>(
    ::core::marker::PhantomData<&'lifetime mut &'lifetime ()>,
);