blob: 7031fb6bcd19bad9c81f646454d27b1347937283 [file] [log] [blame]
/// Marker for types that are `Sync` but not `Send`
pub(crate) struct SyncNotSend(*mut ());
unsafe impl Sync for SyncNotSend {}
cfg_rt! {
pub(crate) struct NotSendOrSync(*mut ());
}