Implement IntoResponse for [u8; N] and &'static [u8; N] (#1690)

Co-authored-by: David Pedersen <[email protected]>
This commit is contained in:
valkyrie_pilot
2023-01-13 09:12:51 +00:00
committed by GitHub
co-authored by David Pedersen
parent e3aaeb3cb7
commit e4c6d76bca
4 changed files with 46 additions and 30 deletions
@@ -5,6 +5,7 @@ error[E0277]: the trait bound `bool: IntoResponse` is not satisfied
| ^^^^ the trait `IntoResponse` is not implemented for `bool`
|
= help: the following other types implement trait `IntoResponse`:
&'static [u8; N]
&'static [u8]
&'static str
()
@@ -12,8 +13,7 @@ error[E0277]: the trait bound `bool: IntoResponse` is not satisfied
(Response<()>, T1, R)
(Response<()>, T1, T2, R)
(Response<()>, T1, T2, T3, R)
(Response<()>, T1, T2, T3, T4, R)
and 120 others
and 122 others
note: required by a bound in `__axum_macros_check_handler_into_response::{closure#0}::check`
--> tests/debug_handler/fail/wrong_return_type.rs:4:23
|