We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5026e0a commit fc2ce39Copy full SHA for fc2ce39
src/rpc.rs
@@ -63,7 +63,7 @@ impl<D: crate::store::Store> Blobs<D> {
63
chan: RpcChannel<RpcService, C>,
64
) -> std::result::Result<(), RpcServerError<C>>
65
where
66
- C: quic_rpc::ServiceEndpoint<RpcService>,
+ C: quic_rpc::ServiceChannel<RpcService>,
67
{
68
use Request::*;
69
match msg {
@@ -79,7 +79,7 @@ impl<D: crate::store::Store> Blobs<D> {
79
chan: RpcChannel<proto::RpcService, C>,
80
81
82
- C: quic_rpc::ServiceEndpoint<proto::RpcService>,
+ C: quic_rpc::ServiceChannel<proto::RpcService>,
83
84
use proto::tags::Request::*;
85
@@ -97,7 +97,7 @@ impl<D: crate::store::Store> Blobs<D> {
97
98
99
100
101
102
use proto::blobs::Request::*;
103
0 commit comments