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, all Result::Err variant types are all typed as String wherever a Result is used.
This should be changed. A crate-wide Error enum should be defined with a From<E> impl for each dependancy error type, along with a crate-wide Result<T> which always uses the aformentioned Error enum for it's error type.
The text was updated successfully, but these errors were encountered:
Currently, all
Result::Err
variant types are all typed asString
wherever a Result is used.This should be changed. A crate-wide Error enum should be defined with a
From<E>
impl for each dependancy error type, along with a crate-wideResult<T>
which always uses the aformentioned Error enum for it's error type.The text was updated successfully, but these errors were encountered: