mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-07 13:38:42 +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() {}
|