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

pub mod prelude;

pub(in crate) mod extension_traits;

pub type Str = ::std::borrow::Cow<'static, str>;

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

pub(in crate) use extension_traits::polyfills::transmute_by_ref;