pub type Result<T> = Result<T, UIError>;
A specialized Result type for openapi-ui operations.
Result
pub enum Result<T> { Ok(T), Err(UIError), }
Contains the success value
Contains the error value