pub trait TopLevelId<Id: TransactionId>: Eq + PartialEq + Ord + PartialOrd {
    // Required method
    fn id(&self) -> Id;
}
Expand description

A top-level ID that should contain the unique Id, but can be priority ordered.

Required Methods§

source

fn id(&self) -> Id

Object Safety§

This trait is not object safe.

Implementors§