pub type ModuleResult<T> = Result<T, String>;
Generic result type for operations in this module.
pub enum ModuleResult<T> { Ok(T), Err(String), }
Contains the success value
Contains the error value