(future: LocalBoxFuture<'static, ()>)
| 72 | } |
| 73 | |
| 74 | pub(crate) fn insert_future(future: LocalBoxFuture<'static, ()>) { |
| 75 | FUTURES.with(|futures| { |
| 76 | futures.borrow_mut().push(future); |
| 77 | }); |
| 78 | } |
| 79 | |
| 80 | /// Sets the [`CapEnv`] using the provided value. |
| 81 | /// |
nothing calls this directly
no outgoing calls
no test coverage detected