Trait aleph_bft::Data

source ·
pub trait Data: Eq + Clone + Send + Sync + Debug + Hash + Codec + 'static { }
Expand description

Data type that we want to order.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Data for T
where T: Eq + Clone + Send + Sync + Debug + Hash + Codec + 'static,