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