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§
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.