(self, context: F)
| 289 | |
| 290 | #[track_caller] |
| 291 | fn change_context_lazy<C, F>(self, context: F) -> FutureWithLazyContext<Self, F> |
| 292 | where |
| 293 | C: Error + Send + Sync + 'static, |
| 294 | F: FnOnce() -> C, |
| 295 | { |
| 296 | FutureWithLazyContext { |
| 297 | future: self, |
| 298 | inner: Some(context), |
| 299 | } |
| 300 | } |
| 301 | } |
no outgoing calls