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
In Rust 2018, things like Box<Trait> will become deprecated in favor of using Box<dyn Trait>
Eventually (not the Rust 2018 epoch), using Trait as a type may be removed entirely, or mean impl Trait instead. To mitigate this breakage in future epochs, please replace cases where Trait is used as a type with dyn Trait.
The text was updated successfully, but these errors were encountered:
In Rust 2018, things like
Box<Trait>
will become deprecated in favor of usingBox<dyn Trait>
Eventually (not the Rust 2018 epoch), using
Trait
as a type may be removed entirely, or meanimpl Trait
instead. To mitigate this breakage in future epochs, please replace cases whereTrait
is used as a type withdyn Trait
.The text was updated successfully, but these errors were encountered: