pub trait MessageExt: Send + Sync {
type Entry: Message + Clone + PartialEq;
// Required method
fn index(e: &Self::Entry) -> u64;
}
Expand description
MessageExt
trait allows for probing log index from a specific type of
protobuf messages.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.