commit | f41f2cc6af28ae55dda1858914049f4d0c13ba16 | [log] [tgz] |
---|---|---|
author | Jeff Vander Stoep <[email protected]> | Tue Jan 31 21:04:58 2023 +0000 |
committer | Automerger Merge Worker <[email protected]> | Tue Jan 31 21:04:58 2023 +0000 |
tree | 24220ebcf96ffa9804e838f8ac35890694f8dc59 | |
parent | ceaa85f80a846befa6fc3e38a9ed99d00f72bc92 [diff] | |
parent | 0db3c5bce3b2dce65b6ccfe4e243f2d1780b79a4 [diff] |
Update TEST_MAPPING am: a38084eecd am: 4172d958f9 am: 0db3c5bce3 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pin-project/+/2411537 Change-Id: I2021c157bc1bef2188d669f87b8ca090d8051ffb Signed-off-by: Automerger Merge Worker <[email protected]>
A crate for safe and ergonomic pin-projection.
Add this to your Cargo.toml
:
[dependencies] pin-project = "1"
Compiler support: requires rustc 1.37+
#[pin_project]
attribute creates projection types covering all the fields of struct or enum.
use pin_project::pin_project; use std::pin::Pin; #[pin_project] struct Struct<T, U> { #[pin] pinned: T, unpinned: U, } impl<T, U> Struct<T, U> { fn method(self: Pin<&mut Self>) { let this = self.project(); let _: Pin<&mut T> = this.pinned; // Pinned reference to the field let _: &mut U = this.unpinned; // Normal reference to the field } }
code like this will be generated
To use #[pin_project]
on enums, you need to name the projection type returned from the method.
use pin_project::pin_project; use std::pin::Pin; #[pin_project(project = EnumProj)] enum Enum<T, U> { Pinned(#[pin] T), Unpinned(U), } impl<T, U> Enum<T, U> { fn method(self: Pin<&mut Self>) { match self.project() { EnumProj::Pinned(x) => { let _: Pin<&mut T> = x; } EnumProj::Unpinned(y) => { let _: &mut U = y; } } } }
code like this will be generated
See documentation for more details, and see examples directory for more examples and generated code.
Licensed under either of Apache License, Version 2.0 or MIT license at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.