(self, attachment: F)
| 266 | |
| 267 | #[track_caller] |
| 268 | fn attach_opaque_with<A, F>(self, attachment: F) -> FutureWithLazyOpaqueAttachment<Self, F> |
| 269 | where |
| 270 | A: OpaqueAttachment, |
| 271 | F: FnOnce() -> A, |
| 272 | { |
| 273 | FutureWithLazyOpaqueAttachment { |
| 274 | future: self, |
| 275 | inner: Some(attachment), |
| 276 | } |
| 277 | } |
| 278 | |
| 279 | #[track_caller] |
| 280 | fn change_context<C>(self, context: C) -> FutureWithContext<Self, C> |
no outgoing calls