Skip to main content

TeXResult

Type Alias TeXResult 

Source
pub type TeXResult<A, ET> = Result<A, TeXError<ET>>;

Aliased Type§

pub enum TeXResult<A, ET> {
    Ok(A),
    Err(TeXError<ET>),
}

Variants§

§1.0.0

Ok(A)

Contains the success value

§1.0.0

Err(TeXError<ET>)

Contains the error value