mirror of
https://github.com/async-rs/async-std.git
synced 2025-01-16 18:59:55 +00:00
expose std::pin
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
This commit is contained in:
parent
dd92d8dc61
commit
343a6c1039
2 changed files with 5 additions and 0 deletions
|
@ -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
4
src/pin.rs
Normal file
|
@ -0,0 +1,4 @@
|
|||
//! Types that pin data to its location in memory.
|
||||
|
||||
#[doc(inline)]
|
||||
pub use std::pin::Pin;
|
Loading…
Reference in a new issue