• Home
  • Raw
  • Download

Lines Matching refs:Rc

10 use std::rc::Rc;
238 async_assert_fn!(tokio::sync::Mutex<Rc<u8>>::lock(_): !Send & !Sync);
241 async_assert_fn!(tokio::sync::Mutex<Rc<u8>>::lock_owned(_): !Send & !Sync);
247 async_assert_fn!(tokio::sync::RwLock<Rc<u8>>::read(_): !Send & !Sync);
248 async_assert_fn!(tokio::sync::RwLock<Rc<u8>>::write(_): !Send & !Sync);
253 async_assert_fn!(tokio::sync::broadcast::Receiver<Rc<u8>>::recv(_): !Send & !Sync);
257 async_assert_fn!(tokio::sync::mpsc::Receiver<Rc<u8>>::recv(_): !Send & !Sync);
260 async_assert_fn!(tokio::sync::mpsc::Sender<Rc<u8>>::send(_, Rc<u8>): !Send & !Sync);
264 async_assert_fn!(tokio::sync::mpsc::UnboundedReceiver<Rc<u8>>::recv(_): !Send & !Sync);
269 async_assert_fn!(tokio::sync::watch::Sender<Rc<u8>>::closed(_): !Send & !Sync);
283 async_assert_fn!(tokio::sync::OnceCell<Rc<u8>>::get_or_init(
284 _, fn() -> Pin<Box<dyn Future<Output = Rc<u8>> + Send + Sync>>): !Send & !Sync);
285 async_assert_fn!(tokio::sync::OnceCell<Rc<u8>>::get_or_init(
286 _, fn() -> Pin<Box<dyn Future<Output = Rc<u8>> + Send>>): !Send & !Sync);
287 async_assert_fn!(tokio::sync::OnceCell<Rc<u8>>::get_or_init(
288 _, fn() -> Pin<Box<dyn Future<Output = Rc<u8>>>>): !Send & !Sync);
291 assert_value!(tokio::sync::OnceCell<Rc<u8>>: !Send & !Sync);
299 async_assert_fn!(tokio::task::LocalKey<Rc<u32>>::scope(_, Rc<u32>, BoxFutureSync<()>): !Send & !Syn…
300 async_assert_fn!(tokio::task::LocalKey<Rc<u32>>::scope(_, Rc<u32>, BoxFutureSend<()>): !Send & !Syn…
301 async_assert_fn!(tokio::task::LocalKey<Rc<u32>>::scope(_, Rc<u32>, BoxFuture<()>): !Send & !Sync);