pub type ParsedResult<T> = Result<T, ParsedError>;
Expand description

Result type returned by parsing GraphQL schema.

Aliased Type§

enum ParsedResult<T> {
    Ok(T),
    Err(ParsedError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(ParsedError)

Contains the error value