Skip to main content

TextResult

Type Alias TextResult 

Source
pub type TextResult<T> = Result<T, TextError>;
Expand description

Result type for text operations.

Aliased Type§

pub enum TextResult<T> {
    Ok(T),
    Err(TextError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(TextError)

Contains the error value