Hacker News new | ask | show | jobs
by estebank 1060 days ago
The GP is referencing cases where inference can't figure out what the T is in Option::<T>::None. This can happen in the body of a closure without an explicit return type, for example. To solve it you have to specify the type either earlier in a place that helps inference (in the example, add a return type) or in the expression, like None::<()>.
1 comments

Yeah sorry I apparently can't read, it was pretty obvious. Thanks.