pub struct Server<T> { /* private fields */ }
Trait Implementations§
Source§impl<T> Guest for Server<T>where
T: Serve,
impl<T> Guest for Server<T>where
T: Serve,
Source§fn handle(request: IncomingRequest, response_out: ResponseOutparam)
fn handle(request: IncomingRequest, response_out: ResponseOutparam)
This function is invoked with an incoming HTTP Request, and a resource
response-outparam
which provides the capability to reply with an HTTP
Response. The response is sent by calling the response-outparam.set
method, which allows execution to continue after the response has been
sent. This enables both streaming to the response body, and performing other
work. Read moreAuto Trait Implementations§
impl<T> Freeze for Server<T>
impl<T> RefUnwindSafe for Server<T>where
T: RefUnwindSafe,
impl<T> Send for Server<T>where
T: Send,
impl<T> Sync for Server<T>where
T: Sync,
impl<T> Unpin for Server<T>where
T: Unpin,
impl<T> UnwindSafe for Server<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