pub struct Html<T>(pub T);
Expand description
An HTML response.
Will automatically get Content-Type: text/html
.
Tuple Fields§
§0: T
Trait Implementations§
Source§impl<T> IntoResponse for Html<T>
impl<T> IntoResponse for Html<T>
Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
impl<T: Copy> Copy for Html<T>
Auto Trait Implementations§
impl<T> Freeze for Html<T>where
T: Freeze,
impl<T> RefUnwindSafe for Html<T>where
T: RefUnwindSafe,
impl<T> Send for Html<T>where
T: Send,
impl<T> Sync for Html<T>where
T: Sync,
impl<T> Unpin for Html<T>where
T: Unpin,
impl<T> UnwindSafe for Html<T>where
T: UnwindSafe,
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
)Source§impl<H, T> HandlerWithoutStateExt<T> for H
impl<H, T> HandlerWithoutStateExt<T> for H
Source§fn into_service(self) -> HandlerService<H, T, ()>
fn into_service(self) -> HandlerService<H, T, ()>
Convert the handler into a
Service
and no state.Source§fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
fn into_make_service(self) -> IntoMakeService<HandlerService<H, T, ()>>
Convert the handler into a
MakeService
and no state. Read moreLayout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.