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
Currently there is no null pointer optimization for a usage like Result<(), Wrapper<X>> whereas there is for Result<(), Box<X>>. The result in the first case will be two words whereas in the latter a single.