mirror of
https://github.com/OMGeeky/tarpc.git
synced 2026-02-23 15:49:54 +01:00
* re-export serde * make serde re-export dependent on serde1 feature flag * update missing_async compile test case
12 lines
344 B
Plaintext
12 lines
344 B
Plaintext
error: not all trait items implemented, missing: `HelloFut`
|
|
--> $DIR/tarpc_server_missing_async.rs:9:1
|
|
|
|
|
9 | impl World for HelloServer {
|
|
| ^^^^
|
|
|
|
error: hint: `#[tarpc::server]` only rewrites async fns, and `fn hello` is not async
|
|
--> $DIR/tarpc_server_missing_async.rs:10:5
|
|
|
|
|
10 | fn hello(name: String) -> String {
|
|
| ^^
|