pub trait MessageExt: Send + Sync {
    type Entry: Message + Clone + PartialEq;

    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

Implementors