pub trait QueueMessage: Debug + Clone {
// Required methods
fn step(&self) -> u8;
fn round(&self) -> u64;
fn signer(&self) -> Option<PublicKeyBytes>;
}Required Methods§
fn step(&self) -> u8
fn round(&self) -> u64
fn signer(&self) -> Option<PublicKeyBytes>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".