Add Unpin to std prelude, not just core

This commit is contained in:
Taylor Cramer 2018-12-26 12:20:38 -08:00
parent 79d8a0fcef
commit 11f4d3e40e

View file

@ -9,7 +9,7 @@
// Re-exported core operators
#[stable(feature = "rust1", since = "1.0.0")]
#[doc(no_inline)]
pub use marker::{Copy, Send, Sized, Sync};
pub use marker::{Copy, Send, Sized, Sync, Unpin};
#[stable(feature = "rust1", since = "1.0.0")]
#[doc(no_inline)]
pub use ops::{Drop, Fn, FnMut, FnOnce};