pub trait BlockRangeHandler {
// Required method
fn handle<S: Stream<Item = BlockScannerResult> + Unpin + Send>(
self,
stream: S,
) -> impl Future<Output = ()> + Send;
}Expand description
Handles a stream of scanned block ranges.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".