mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-07 13:38:42 +00:00
16 lines
237 B
Rust
16 lines
237 B
Rust
use pin_project_lite::pin_project;
|
|
|
|
pin_project! {
|
|
#[project_ref = EnumProjRef]
|
|
enum Enum<T, U> {
|
|
Struct {
|
|
#[pin]
|
|
pinned: T,
|
|
unpinned: U,
|
|
},
|
|
Unit,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|