7 lines
227 B
Rust
7 lines
227 B
Rust
|
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<()>>;
|