mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-22 12:28:18 +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() {}
|