Type Alias Result

Source
pub type Result<T> = Result<T, Error>;
Expand description

Represents a result type for operations in the Eppo SDK.

This type alias is used throughout the SDK to indicate the result of operations that may return errors specific to the Eppo SDK.

This Result type is a standard Rust Result type where the error variant is defined by the eppo-specific Error enum.

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(Error),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Error)

Contains the error value