Type Alias Result<T, E>

Result: Ok<T> | Err<E>

The result of a failable operation

Type Parameters

  • T

    The value type of the Ok result.

  • E = unknown

    The error type of the Err result.