pub trait QuorumFilterConfig:
Copy
+ Clone
+ Debug
+ Default
+ Send
+ Sync
+ Ord
+ PartialOrd
+ Eq
+ PartialEq
+ Hash
+ 'static {
// Required method
fn execute(epoch: u64, count: usize) -> BTreeSet<usize>;
}
Expand description
Trait wrapping a config for quorum filters. This allows selection between either the StableQuorumIterator or the RandomOverlapQuorumIterator functionality from above
Required Methods§
Object Safety§
This trait is not object safe.