pub type Result<T> = Result<T, OatsError>;
Result type for OATS operations
pub enum Result<T> { Ok(T), Err(OatsError), }
Contains the success value
Contains the error value