pub type StrResult<T> = Result<T, EcoString>;Expand description
A result type with a string error message. The recommended way to create an
error for this type is with the [bail!] macro.
Aliased Type§
pub enum StrResult<T> {
Ok(T),
Err(EcoString),
}