pub type Result<T> = Result<T, OciError>;
Result type alias
pub enum Result<T> { Ok(T), Err(OciError), }
Contains the success value
Contains the error value