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),
}