denyhosts/clamav/libclamav_rust/.cargo/vendor/pin-project/examples/struct-default.rs

15 lines
206 B
Rust
Raw Normal View History

2023-01-14 18:28:39 +08:00
// See ./struct-default-expanded.rs for generated code.
#![allow(dead_code)]
use pin_project::pin_project;
#[pin_project]
struct Struct<T, U> {
#[pin]
pinned: T,
unpinned: U,
}
fn main() {}