pub type StrResult<T> = Result<T, EcoString>;Expand description
A result type with a string error message.
Aliased Type§
pub enum StrResult<T> {
Ok(T),
Err(EcoString),
}pub type StrResult<T> = Result<T, EcoString>;A result type with a string error message.
pub enum StrResult<T> {
Ok(T),
Err(EcoString),
}