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
It suddenly complains about Pins, maybe the upstream API has changed.
error[E0277]: the size for values of type `<&mut future::maybe_done::MaybeDone<Fut> as std::ops::Deref>::Target` cannot be known at compilation time
--> futures-util/src/future/maybe_done.rs:110:9
|
110 | Pin::set(self, MaybeDone::Done(res));
| ^^^^^^^^ doesn't have a size known at compile-time
|
= help: the trait `std::marker::Sized` is not implemented for `<&mut future::maybe_done::MaybeDone<Fut> as std::ops::Deref>::Target`
= note: to learn more, visit <https://doc.rust-lang.org/book/second-edition/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait>
= help: consider adding a `where <&mut future::maybe_done::MaybeDone<Fut> as std::ops::Deref>::Target: std::marker::Sized` bound
= note: all function arguments must have a statically known size
= help: unsized locals are gated as an unstable feature
(...)
error: aborting due to 38 previous errors
Uh oh!
There was an error while loading. Please reload this page.
It suddenly complains about
Pin
s, maybe the upstream API has changed.It was okay until
edaac35d6 2018-11-24
.The text was updated successfully, but these errors were encountered: