//! Defines helper types
usestd::cell::Cell;usestd::marker::PhantomData;usestd::sync::MutexGuard;/// Indicates that a type is !Sync
pubtypePhantomUnsync=PhantomData<Cell<()>>;/// Indicates that a type is !Send
pubtypePhantomUnsend=PhantomData<MutexGuard<'static, ()>>;