Trait RespondOnce
fuse
pub trait RespondOnce<Response>: Sealed + Send { fn ok(self, response: &Response); fn err(self, err: Error); fn into_box(self) -> Box<dyn RespondOnceBox<Response> + 'static>; }
fn ok(self, response: &Response)
fn err(self, err: Error)
fn into_box(self) -> Box<dyn RespondOnceBox<Response> + 'static>