13 lines
186 B
Rust
13 lines
186 B
Rust
// SPDX-License-Identifier: Apache-2.0 OR MIT
|
|
|
|
use pin_project::pin_project;
|
|
|
|
#[pin_project]
|
|
pub struct Struct<T, U> {
|
|
#[pin]
|
|
pub pinned: T,
|
|
pub unpinned: U,
|
|
}
|
|
|
|
fn main() {}
|