Type Alias ResultWithMethod

Source
type ResultWithMethod<T, Method> = Result<T, QueryError<Method>>;

Aliased Type§

enum ResultWithMethod<T, Method> {
    Ok(T),
    Err(QueryError<Method>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(QueryError<Method>)

Contains the error value