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