1/// Marker for types that are `Sync` but not `Send`
2pub(crate) struct SyncNotSend(*mut ());
3
4unsafe impl Sync for SyncNotSend {}
5
6cfg_rt! {
7 pub(crate) struct NotSendOrSync(*mut ());
8}
9