pub trait IntoResponse: Sealed + Sized {
type Response;
// Required method
fn into_response(self, res: Response) -> Self::Response;
}
Expand description
trait for generic over how to construct an async stream rows
Required Associated Types§
Required Methods§
fn into_response(self, res: Response) -> Self::Response
Object Safety§
This trait is not object safe.