pub enum RUMWebResponse {
GetResponse(HTMLBody),
RedirectResponse(RedirectBody),
RedirectTemporaryResponse(RedirectBody),
RedirectPermanentResponse(RedirectBody),
None,
}Variants§
GetResponse(HTMLBody)
RedirectResponse(RedirectBody)
RedirectTemporaryResponse(RedirectBody)
RedirectPermanentResponse(RedirectBody)
None
Implementations§
Source§impl RUMWebResponse
impl RUMWebResponse
pub fn is_redirect(&self) -> bool
pub fn to_rumstring(&self) -> RUMString
pub fn get_url(&self) -> RUMString
pub fn get_code(&self) -> StatusCode
pub fn into_html_result(self) -> HTMLResult
pub fn into_get_response(data: &str) -> Self
Trait Implementations§
Source§impl Clone for RUMWebResponse
impl Clone for RUMWebResponse
Source§fn clone(&self) -> RUMWebResponse
fn clone(&self) -> RUMWebResponse
Returns a duplicate 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 moreSource§impl Debug for RUMWebResponse
impl Debug for RUMWebResponse
Source§impl Default for RUMWebResponse
impl Default for RUMWebResponse
Source§fn default() -> RUMWebResponse
fn default() -> RUMWebResponse
Returns the “default value” for a type. Read more
Source§impl IntoResponse for RUMWebResponse
impl IntoResponse for RUMWebResponse
Source§fn into_response(self) -> HTMLResponse
fn into_response(self) -> HTMLResponse
Create a response.
Source§impl PartialEq for RUMWebResponse
impl PartialEq for RUMWebResponse
impl StructuralPartialEq for RUMWebResponse
Auto Trait Implementations§
impl Freeze for RUMWebResponse
impl RefUnwindSafe for RUMWebResponse
impl Send for RUMWebResponse
impl Sync for RUMWebResponse
impl Unpin for RUMWebResponse
impl UnsafeUnpin for RUMWebResponse
impl UnwindSafe for RUMWebResponse
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§impl<T, S> Handler<IntoResponseHandler, S> for T
impl<T, S> Handler<IntoResponseHandler, S> for T
Source§fn call(
self,
_req: Request<Body>,
_state: S,
) -> <T as Handler<IntoResponseHandler, S>>::Future
fn call( self, _req: Request<Body>, _state: S, ) -> <T as Handler<IntoResponseHandler, S>>::Future
Call the handler with the given request.
Source§fn layer<L>(self, layer: L) -> Layered<L, Self, T, S>where
L: Layer<HandlerService<Self, T, S>> + Clone,
<L as Layer<HandlerService<Self, T, S>>>::Service: Service<Request<Body>>,
fn layer<L>(self, layer: L) -> Layered<L, Self, T, S>where
L: Layer<HandlerService<Self, T, S>> + Clone,
<L as Layer<HandlerService<Self, T, S>>>::Service: Service<Request<Body>>,
Apply a
tower::Layer to the handler. Read moreSource§fn with_state(self, state: S) -> HandlerService<Self, T, S>
fn with_state(self, state: S) -> HandlerService<Self, T, S>
Convert the handler into a
Service by providing the stateSource§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 moreSource§fn into_make_service_with_connect_info<C>(
self,
) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
fn into_make_service_with_connect_info<C>( self, ) -> IntoMakeServiceWithConnectInfo<HandlerService<H, T, ()>, C>
Convert the handler into a
MakeService which stores information
about the incoming connection and has no state. Read more