2
0
Fork 1
mirror of https://github.com/async-rs/async-std.git synced 2025-02-25 13:49:40 +00:00
async-std/src/pin.rs
Yoshua Wuyts 39a1c2b577
add link to std pin docs
Signed-off-by: Yoshua Wuyts <yoshuawuyts@gmail.com>
2019-09-16 22:34:11 +02:00

6 lines
185 B
Rust

//! Types that pin data to its location in memory.
//!
//! For more documentation see [`std::pin`](https://doc.rust-lang.org/std/pin/index.html).
#[doc(inline)]
pub use std::pin::Pin;