pub type Result<T> = ApiResult<T>;
Result type for Enso API operations
pub enum Result<T> { Ok(T), Err(ApiError), }
Contains the success value
Contains the error value