Struct rocket::response::status::Unauthorized[][src]

pub struct Unauthorized<R>(pub Option<R>);
Expand description

Sets the status of the response to 401 (Unauthorized).

If a responder is supplied, the remainder of the response is delegated to it. If there is no responder, the body of the response will be empty.

Examples

A 401 Unauthorized response without a body:

use rocket::response::status;

let response = status::Unauthorized::<()>(None);

A 401 Unauthorized response with a body:

use rocket::response::status;

let response = status::Unauthorized(Some("error message"));

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Sets the status code of the response to 401 Unauthorized. If the responder is Some, it is used to finalize the response.

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.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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.