pub type FunctionResult = Result<i64>;
pub enum FunctionResult { Ok(i64), Err(Error), }
Contains the success value
Contains the error value