Searched defs:WrapperWithLifetime (Results 1 – 3 of 3) sorted by relevance
/external/rust/crates/pin-project/tests/ui/unstable-features/ |
D | trivial_bounds-feature-gate.rs | 18 struct WrapperWithLifetime<'a, T>(PhantomData<&'a ()>, T); struct 20 impl<T> Unpin for WrapperWithLifetime<'_, T> where T: Unpin {} implementation 44 struct WrapperWithLifetime<'a, T>(PhantomData<&'a ()>, T); struct 46 impl<T> Unpin for WrapperWithLifetime<'_, T> where T: Unpin {} implementation
|
D | trivial_bounds-bug.rs | 23 struct WrapperWithLifetime<'a, T>(PhantomData<&'a ()>, T); struct 25 impl<T> Unpin for WrapperWithLifetime<'_, T> where T: Unpin {} implementation
|
D | trivial_bounds.rs | 25 struct WrapperWithLifetime<'a, T>(PhantomData<&'a ()>, T); in inner() struct 27 impl<T> Unpin for WrapperWithLifetime<'_, T> where T: Unpin {} in inner() implementation
|