pub type Result<T> = Result<T, Refusal>;
The result of an update operation.
pub enum Result<T> { Ok(T), Err(Refusal), }
Contains the success value
Contains the error value