2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-01-16 10:49:55 +00:00

expose std::pin

Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
Yoshua Wuyts 2019-09-16 15:03:34 +02:00
parent dd92d8dc61
commit 343a6c1039
No known key found for this signature in database
GPG key ID: 24EA8164F96777ED
2 changed files with 5 additions and 0 deletions

View file

@ -51,5 +51,6 @@ pub mod prelude;
pub mod stream;
pub mod sync;
pub mod task;
pub mod pin;
pub(crate) mod utils;

4
src/pin.rs Normal file
View file

@ -0,0 +1,4 @@
//! Types that pin data to its location in memory.
#[doc(inline)]
pub use std::pin::Pin;