Lines Matching refs:Inspect
308 assert_impl!(Inspect<SendFuture, ()>: Send);
309 assert_not_impl!(Inspect<SendFuture, *const ()>: Send);
310 assert_not_impl!(Inspect<LocalFuture, ()>: Send);
311 assert_impl!(Inspect<SyncFuture, ()>: Sync);
312 assert_not_impl!(Inspect<SyncFuture, *const ()>: Sync);
313 assert_not_impl!(Inspect<LocalFuture, ()>: Sync);
314 assert_impl!(Inspect<UnpinFuture, PhantomPinned>: Unpin);
315 assert_not_impl!(Inspect<PhantomPinned, PhantomPinned>: Unpin);
1304 assert_impl!(Inspect<(), ()>: Send);
1305 assert_not_impl!(Inspect<*const (), ()>: Send);
1306 assert_not_impl!(Inspect<(), *const ()>: Send);
1307 assert_impl!(Inspect<(), ()>: Sync);
1308 assert_not_impl!(Inspect<*const (), ()>: Sync);
1309 assert_not_impl!(Inspect<(), *const ()>: Sync);
1310 assert_impl!(Inspect<(), PhantomPinned>: Unpin);
1311 assert_not_impl!(Inspect<PhantomPinned, ()>: Unpin);