mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-09 12:41:09 +00:00
12 lines
154 B
Rust
12 lines
154 B
Rust
|
use pin_project_lite::pin_project;
|
||
|
|
||
|
pin_project! {
|
||
|
struct Struct<T, U> {
|
||
|
#[pin]
|
||
|
pinned: T,
|
||
|
unpinned: U,
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|