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