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
std::result::Result has a flatten method to transform a Result<Result<T, E>, E> into a Result<T, E>. For us that would be woah::Result<T, F, F> flattening to Result<T, F>. Worth considering.