//! This crate provides marker types that are easier to understand than using
//! [PhantomData] directly.
use PhantomData;
/// A marker type that implements [`!Send`](Send).
///
/// Construct it using [Default::default()].
unsafe
/// A marker type that implements [`!Sync`](Sync).
///
/// Construct it using [Default::default()].
unsafe