pub trait ReplicateFromStorage:
Sync
+ Send
+ 'static {
// Required method
fn stream<'a, 'b>(
&'b self,
seen: &'a mut RoaringBitmap,
current: u64,
until: u64,
) -> Pin<Box<dyn Stream<Item = Result<Box<Frame>, Error>> + Send + 'a>>;
}Required Methods§
fn stream<'a, 'b>( &'b self, seen: &'a mut RoaringBitmap, current: u64, until: u64, ) -> Pin<Box<dyn Stream<Item = Result<Box<Frame>, Error>> + Send + 'a>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".