pub type TranslateResult<A, S> = Result<Page<A, S>, TranslateError<S>>;

Aliased Type§

enum TranslateResult<A, S> {
    Ok(Page<A, S>),
    Err(TranslateError<S>),
}

Variants§

§1.0.0

Ok(Page<A, S>)

Contains the success value

§1.0.0

Err(TranslateError<S>)

Contains the error value