pub trait FragmentRpcClient: Send + Sync {
// Required method
fn call<'life0, 'async_trait>(
&'life0 self,
request: Vec<u8>,
) -> Pin<Box<dyn Future<Output = DistributedResult<Vec<u8>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
One authenticated request/response carrier for remote fragment bodies.
Production implements this over the cluster’s node-identity-bound mTLS
transport. Tests may use LoopbackFragmentRpcClient to isolate the
query-side protocol.
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".