Type Alias Result

Source
pub type Result<T> = Result<Json<Response<T>>, Error>;

Aliased Type§

pub enum Result<T> {
    Ok(Json<Response<T>>),
    Err(Error),
}

Variants§

§1.0.0

Ok(Json<Response<T>>)

Contains the success value

§1.0.0

Err(Error)

Contains the error value