Struct rocketjson_data::api::response_err::ApiResponseErr[][src]

pub struct ApiResponseErr<T> {
    pub json: Result<Json<T>, ApiErrors>,
    pub status: Option<Status>,
}
Expand description

Is returned by enpoints to achieve a Json response success or failure Returned can be errors in [ApiErrors]. with ApiResponseErr.err(...). To forward Errors as ApiResponseErr rjtry can be used.

Example

pub async fn db_get_users() -> Result<String, diesel::result::Error> {
    ...
}

pub async fn is_admin() -> ApiResponseErr<bool> {
    let user = rjtry!(db_get_users().await);
    user == "admin"
}
#[derive(serde::Deserialize, validator::Validate, rocketjson::JsonBody)]
pub struct LoginRequest {
    #[validate(length(min = 1))]
    username: String,
    #[validate(length(min = 1))]
    password: String
}

#[derive(serde::Serialize)]
pub struct LoginResponse {
    message: String
}

#[post("/login", data="<data>")]
pub fn login(data: LoginRequest) -> rocketjson::ApiResponseErr<LoginResponse> {
    if data.username == "admin" && data.password == "admin" {
        return rocketjson::ApiResponseErr::ok(
            rocket::http::Status::Ok,
            LoginResponse{ message: "logged in" }
        );
    }

    return rocketjson::ApiResponseErr::api_err(rocket::http::Status::InternalServerError, String::from("login failed"))
}
  • Input
{
    "username": "admin",
    "password": "admin"
}
  • Output (200 OK)
{
    "message": "logged in"
}
  • Input
{
    "username": "test",
    "password": "test"
}
  • Output (500 Internal Server Error)
{
    "error": "login failed"
}

Fields

json: Result<Json<T>, ApiErrors>

This is the Json-data sent to the client

status: Option<Status>

This is the Statuscode sent to the client, it is not included in the Json

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Returns Ok if a Response could be generated successfully. Otherwise, returns an Err with a failing Status. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Converts self into a collection.

Convert self to an expression for Diesel’s query builder. Read more

Convert &self to an expression for Diesel’s query builder. Read more

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more