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§

Required Associated Constants§

Implementors§