mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-08 14:02:59 +00:00
13 lines
189 B
Rust
13 lines
189 B
Rust
|
use pin_project_lite::pin_project;
|
||
|
|
||
|
pin_project! {
|
||
|
#[project_ref = StructProjRef]
|
||
|
struct Struct<T, U> {
|
||
|
#[pin]
|
||
|
pinned: T,
|
||
|
unpinned: U,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|