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