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