diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-20T17·57+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-06-20T21·07+0000 |
commit | 7f625e2fc104a9403c0a0eb2c6abe975948dada3 (patch) | |
tree | 3942b85fc1e44554ef3ec7948c9f9b32ca640911 /tvix/castore/src | |
parent | 639a00e2ab1f2a6530477d2d7f91cccbc9f70746 (diff) |
refactor(tvix/*store): remove some trait bounds r/8300
We don't need to require these things for these impl blocks yet. Change-Id: I3cec958a637a4f900bdd38abd00e9133bf75ce46 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11865 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: Simon Hauser <simon.hauser@helsinki-systems.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/castore/src')
-rw-r--r-- | tvix/castore/src/blobservice/grpc.rs | 10 | ||||
-rw-r--r-- | tvix/castore/src/directoryservice/grpc.rs | 10 |
2 files changed, 4 insertions, 16 deletions
diff --git a/tvix/castore/src/blobservice/grpc.rs b/tvix/castore/src/blobservice/grpc.rs index 9b54d81de29c..834c0c7bf57a 100644 --- a/tvix/castore/src/blobservice/grpc.rs +++ b/tvix/castore/src/blobservice/grpc.rs @@ -22,19 +22,13 @@ use tracing::{instrument, Instrument as _}; /// Connects to a (remote) tvix-store BlobService over gRPC. #[derive(Clone)] -pub struct GRPCBlobService<T> -where - T: Clone, -{ +pub struct GRPCBlobService<T> { /// The internal reference to a gRPC client. /// Cloning it is cheap, and it internally handles concurrent requests. grpc_client: proto::blob_service_client::BlobServiceClient<T>, } -impl<T> GRPCBlobService<T> -where - T: tonic::client::GrpcService<tonic::body::BoxBody> + Clone, -{ +impl<T> GRPCBlobService<T> { /// construct a [GRPCBlobService] from a [proto::blob_service_client::BlobServiceClient]. /// panics if called outside the context of a tokio runtime. pub fn from_client(grpc_client: proto::blob_service_client::BlobServiceClient<T>) -> Self { diff --git a/tvix/castore/src/directoryservice/grpc.rs b/tvix/castore/src/directoryservice/grpc.rs index 54d7575adcc1..ca9b0de07b14 100644 --- a/tvix/castore/src/directoryservice/grpc.rs +++ b/tvix/castore/src/directoryservice/grpc.rs @@ -14,19 +14,13 @@ use tracing::{instrument, warn, Instrument as _}; /// Connects to a (remote) tvix-store DirectoryService over gRPC. #[derive(Clone)] -pub struct GRPCDirectoryService<T> -where - T: Clone, -{ +pub struct GRPCDirectoryService<T> { /// The internal reference to a gRPC client. /// Cloning it is cheap, and it internally handles concurrent requests. grpc_client: proto::directory_service_client::DirectoryServiceClient<T>, } -impl<T> GRPCDirectoryService<T> -where - T: tonic::client::GrpcService<tonic::body::BoxBody> + Clone, -{ +impl<T> GRPCDirectoryService<T> { /// construct a [GRPCDirectoryService] from a [proto::directory_service_client::DirectoryServiceClient]. /// panics if called outside the context of a tokio runtime. pub fn from_client( |