Type Alias tf_demo_parser::demo::parser::error::Result

source ·
pub type Result<T> = Result<T, ParseError>;

Aliased Type§

enum Result<T> {
    Ok(T),
    Err(ParseError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParseError)

Contains the error value