Sha256: cf6a7b04451c59ce697c3ef15855c7740b0e72a6005b1f47db326bd93b1849c3
Contents?: true
Size: 301 Bytes
Versions: 22
Compression:
Stored size: 301 Bytes
Contents
use std::pin::Pin; use pin_project_lite::pin_project; pin_project! { struct Struct<T, U> { #[pin] pinned: T, unpinned: U, } impl<T, U> PinnedDrop for Struct<T, U> { fn drop(this: Pin<&mut Self>) { let _ = this; } } } fn main() {}
Version data entries
22 entries across 22 versions & 1 rubygems