You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: captured variable cannot escape `FnMut` closure body
--> src/layers/retry.rs:634:14
|
633 | async fn next(&mutself) -> Result<Option<Vec<oio::Entry>>> {
| -------- variable defined here
634 | { || self.inner.next()}
| - ----^^^^^^^^^^^^^
| | |
| | returns a reference to a captured variable which escapes the closure body
| | variable captured here
| inferred to be a `FnMut` closure
|
= note: `FnMut` closures only have access to their captured variables while they are executing...
= note: ...therefore, they cannot allow references to captured variables to escape
The text was updated successfully, but these errors were encountered:
Errors log:
The text was updated successfully, but these errors were encountered: