Represents the result of an operation that may succeed (Ok<V>) or fail (Err<E>).
Ok<V>
Err<E>
The success value type.
The error value type.
Represents the result of an operation that may succeed (
Ok<V>) or fail (Err<E>).