Trait mz_service::grpc::ProtoServiceTypes
source · pub trait ProtoServiceTypes:
Debug
+ Clone
+ Send {
type PC: Message + Clone + 'static;
type PR: Message + Clone + Default + 'static;
type STATS: StatsCollector<Self::PC, Self::PR> + 'static;
const URL: &'static str;
}
Expand description
Types that we send and receive over a service endpoint.
Required Associated Types§
type PC: Message + Clone + 'static
type PR: Message + Clone + Default + 'static
type STATS: StatsCollector<Self::PC, Self::PR> + 'static
Required Associated Constants§
Object Safety§
This trait is not object safe.