Hacker News new | ask | show | jobs
by stefncb 1060 days ago
It's actually not. There's simply a 'use Option::{None, Some}' built-in to make them easier to work with.
1 comments

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::<()>.
Yeah sorry I apparently can't read, it was pretty obvious. Thanks.