mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-22 12:28:18 +00:00
15 lines
204 B
Rust
15 lines
204 B
Rust
use pin_project_lite::pin_project;
|
|
|
|
pin_project! {
|
|
enum Enum<T, U> {
|
|
Struct {
|
|
#[pin]
|
|
pinned: T,
|
|
unpinned: U,
|
|
},
|
|
Unit,
|
|
}
|
|
}
|
|
|
|
fn main() {}
|