pub type ActionResult = Result<Value, String>;
pub enum ActionResult { Ok(Value), Err(String), }
Contains the success value
Contains the error value