pub trait Value:
Eq
+ Serialize
+ for<'a> Deserialize<'a>
+ Clone
+ Debug
+ Display { }
Expand description
A general trait representing a value in the BPCon consensus protocol.
Implementing this trait ensures that values can be safely transmitted and logged during the consensus process.
Object Safety§
This trait is not object safe.