Struct rocket::response::status::Unauthorized
source · 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"));
Tuple Fields§
§0: Option<R>
Trait Implementations§
source§fn clone(&self) -> Unauthorized<R>
fn clone(&self) -> Unauthorized<R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSets the status code of the response to 401 Unauthorized. If the responder is
Some
, it is used to finalize the response.
Auto Trait Implementations§
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)