pub trait Greeter {
    fn say_hello(
        &mut self,
        ctx: RpcContext<'_>,
        _req: HelloRequest,
        sink: UnarySink<HelloReply>
    ) { ... } }

Provided methods

Implementors