1 2 3 4 5 6
use std::marker::PhantomData; use std::rc::Rc; /// A marker type that makes the type !Send. /// Temporal hack until https://github.com/rust-lang/rust/issues/13231 is resolved. pub(crate) type Unsendable = PhantomData<Rc<()>>;