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