pub trait Partition: Clone + Debug + Send + Sync + Serialize + DeserializeOwned + Hash + Ord + 'static { }
Expand description

A supertrait of all the required trait a partition type must have

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<P> Partition for Pwhere P: Clone + Debug + Send + Sync + Serialize + DeserializeOwned + Hash + Ord + 'static,