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
This isn't strictly an impl Trait proposal, but it interacts heavily with abstract return types.
In particular, it'd be nice to be able to write typeof(my_func)::Output to refer to the return type of an impl Trait-returning function. (Note: this could require some shenanigans to avoid having to specify <typeof(my_func) as Fn<_>>::Output>.)
The text was updated successfully, but these errors were encountered:
This isn't strictly an
impl Trait
proposal, but it interacts heavily with abstract return types.In particular, it'd be nice to be able to write
typeof(my_func)::Output
to refer to the return type of animpl Trait
-returning function. (Note: this could require some shenanigans to avoid having to specify<typeof(my_func) as Fn<_>>::Output>
.)The text was updated successfully, but these errors were encountered: