handshake: server: Make 'create_response_with_body' function more generic

This makes it more possible to use the library handshake creation when the
request and response body types differ.

Signed-off-by: bartel <bartel.sielski@gmail.com>
This commit is contained in:
bartel 2024-04-22 17:30:05 +02:00
parent 0fa41973b4
commit d87f396ebf
1 changed files with 4 additions and 4 deletions

View File

@ -86,10 +86,10 @@ pub fn create_response(request: &Request) -> Result<Response> {
}
/// Create a response for the request with a custom body.
pub fn create_response_with_body<T>(
request: &HttpRequest<T>,
generate_body: impl FnOnce() -> T,
) -> Result<HttpResponse<T>> {
pub fn create_response_with_body<T1, T2>(
request: &HttpRequest<T1>,
generate_body: impl FnOnce() -> T2,
) -> Result<HttpResponse<T2>> {
Ok(create_parts(request)?.body(generate_body())?)
}