[31m[1mERROR[0m[39m: 
  × One of the input parameters for `app::handler_with_input_tuple` has a type
  │ that I cannot handle.
    ╭─[src/lib.rs:18:1]
 18 │     );
 19 │     bp.route(f!(crate::handler_with_input_tuple), "/home");
    ·              ─────────────────┬─────────────────
    ·                               ╰── The request handler was registered here
 20 │     bp
    ╰────

Error: 
  × 
    ╭─[src/lib.rs:8:1]
  8 │ 
  9 │ pub fn handler_with_input_tuple(input: (usize, isize)) -> pavex_runtime::response::Response {
    ·                                        ───────┬──────
    ·                                               ╰── I do not know how handle this parameter
 10 │     todo!()
    ╰────

[31m[1mERROR[0m[39m: 
  × One of the input parameters for `app::constructor_with_input_tuple` has a
  │ type that I cannot handle.
    ╭─[src/lib.rs:15:1]
 15 │     bp.constructor(
 16 │         f!(crate::constructor_with_input_tuple),
    ·         ───────────────────┬───────────────────
    ·                            ╰── The constructor was registered here
 17 │         Lifecycle::Singleton,
    ╰────

Error: 
  × 
   ╭─[src/lib.rs:4:1]
 4 │ 
 5 │ pub fn constructor_with_input_tuple(input: (usize, isize)) -> Logger {
   ·                                            ───────┬──────
   ·                                                   ╰── I do not know how handle this parameter
 6 │     todo!()
   ╰────