Type Alias Result<T>

Result: Ok<T> | Err<T>

A union type representing either a successful value (Ok) or an error (Err). This is used throughout the library to handle operations that might fail.

Type Parameters

  • T

    The type of the successful value