pub type StrResult<T> = Result<T, EcoString>;
A result type with a string error message.
enum StrResult<T> { Ok(T), Err(EcoString), }
Contains the success value
Contains the error value