server-less 0.6.0

Composable derive macros for common Rust patterns
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
error[E0599]: no method named `cli_run_with` found for struct `MySvc` in the current scope
  --> tests/fixtures/no_sync_missing_cli_run_with.rs:16:9
   |
 4 | struct MySvc;
   | ------------ method `cli_run_with` not found for this struct
...
16 |     svc.cli_run_with(["my-svc", "run"]).unwrap();
   |         ^^^^^^^^^^^^
   |
help: there is a method `cli_run_with_async` with a similar name
   |
16 |     svc.cli_run_with_async(["my-svc", "run"]).unwrap();
   |                     ++++++