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