Trait worker::IntoResponse

source ·
pub trait IntoResponse {
    // Required method
    fn into_raw(self) -> Result<Response, impl Into<Box<dyn Error>>>;
}
Expand description

A trait used to represent any viable Response type that can be used in the Worker. The only requirement is that it be convertible to a web_sys::Response.

Required Methods§

source

fn into_raw(self) -> Result<Response, impl Into<Box<dyn Error>>>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl IntoResponse for Response

source§

fn into_raw(self) -> Result<Response, impl Into<Box<dyn Error>>>

source§

impl<B> IntoResponse for Response<B>
where B: Body<Data = Bytes> + 'static,

source§

fn into_raw(self) -> Result<Response, impl Into<Box<dyn Error>>>

Implementors§