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

pub mod prelude;

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 ()>,
);