use pin_project::pin_project; #[pin(__private(project_ref = ProjRef))] struct Struct { #[pin] pinned: T, unpinned: U, } #[allow( dead_code, deprecated, explicit_outlives_requirements, single_use_lifetimes, unreachable_pub, unused_tuple_struct_fields, clippy::unknown_clippy_lints, clippy::absolute_paths, clippy::min_ident_chars, clippy::pattern_type_mismatch, clippy::pub_with_shorthand, clippy::redundant_pub_crate, clippy::single_char_lifetime_names, clippy::type_repetition_in_bounds, clippy::missing_docs_in_private_items, clippy::ref_option_ref )] struct ProjRef<'pin, T, U> where Struct: 'pin, { pinned: ::pin_project::__private::Pin<&'pin (T)>, unpinned: &'pin (U), } #[allow( unused_qualifications, deprecated, explicit_outlives_requirements, single_use_lifetimes, unreachable_pub, unused_tuple_struct_fields, clippy::unknown_clippy_lints, clippy::absolute_paths, clippy::min_ident_chars, clippy::pattern_type_mismatch, clippy::pub_with_shorthand, clippy::redundant_pub_crate, clippy::single_char_lifetime_names, clippy::type_repetition_in_bounds, clippy::needless_lifetimes, clippy::semicolon_if_nothing_returned, clippy::use_self, clippy::used_underscore_binding )] const _: () = { #[allow(unused_extern_crates)] extern crate pin_project as _pin_project; #[allow(dead_code, clippy::missing_docs_in_private_items, clippy::mut_mut)] struct __StructProjection<'pin, T, U> where Struct: 'pin, { pinned: ::pin_project::__private::Pin<&'pin mut (T)>, unpinned: &'pin mut (U), } impl Struct { #[allow(dead_code)] #[inline] fn project<'pin>( self: _pin_project::__private::Pin<&'pin mut Self>, ) -> __StructProjection<'pin, T, U> { unsafe { let Self { pinned, unpinned } = self.get_unchecked_mut(); __StructProjection { pinned: _pin_project::__private::Pin::new_unchecked(pinned), unpinned, } } } #[allow(dead_code)] #[allow(clippy::missing_const_for_fn)] #[inline] fn project_ref<'pin>( self: _pin_project::__private::Pin<&'pin Self>, ) -> ProjRef<'pin, T, U> { unsafe { let Self { pinned, unpinned } = self.get_ref(); ProjRef { pinned: _pin_project::__private::Pin::new_unchecked(pinned), unpinned, } } } } #[forbid(unaligned_references, safe_packed_borrows)] fn __assert_not_repr_packed(this: &Struct) { let _ = &this.pinned; let _ = &this.unpinned; } #[allow(missing_debug_implementations, unnameable_types)] struct __Struct<'pin, T, U> { __pin_project_use_generics: _pin_project::__private::AlwaysUnpin< 'pin, ( _pin_project::__private::PhantomData, _pin_project::__private::PhantomData, ), >, __field0: T, } impl<'pin, T, U> _pin_project::__private::Unpin for Struct where _pin_project::__private::PinnedFieldsOf< __Struct<'pin, T, U>, >: _pin_project::__private::Unpin, {} #[doc(hidden)] unsafe impl<'pin, T, U> _pin_project::UnsafeUnpin for Struct where _pin_project::__private::PinnedFieldsOf< __Struct<'pin, T, U>, >: _pin_project::__private::Unpin, {} trait StructMustNotImplDrop {} #[allow(clippy::drop_bounds, drop_bounds)] impl StructMustNotImplDrop for T {} impl StructMustNotImplDrop for Struct {} #[doc(hidden)] impl _pin_project::__private::PinnedDrop for Struct { unsafe fn drop(self: _pin_project::__private::Pin<&mut Self>) {} } }; fn main() {}