stepancheg / grpc-rust

Rust implementation of gRPC
MIT License
1.38k stars 125 forks source link

add derive Clone to Client (branch master) #197

Closed formiat closed 2 years ago

stepancheg commented 2 years ago

Why would you want Client to be Clone?

Can't use store the client as Arc<Client> instead?

(FYI, grpc-rust is mostly dead project)

formiat commented 2 years ago

Why would you want Client to be Clone? Can't use store the client as Arc instead?

Clone is simpler and more convenient than using Arc.

(FYI, grpc-rust is mostly dead project)

Is there another crate to replace it?