palantir / conjure-rust

Conjure support for Rust
Apache License 2.0
20 stars 11 forks source link

Endpoints need to be 'static #356

Closed sfackler closed 5 months ago

sfackler commented 5 months ago

Before this PR

Async endpoints borrowed from &self implicitly, which is not what we want here.

After this PR

==COMMIT_MSG== AsyncService must return 'static endpoints. ==COMMIT_MSG==