pub trait Generator {
    fn by_seed(
        &self,
        now: NowFn,
        seed: Option<u64>
    ) -> Box<dyn Iterator<Item = (usize, GeneratorMessageType, Row, i64)>>; }

Required Methods§

Returns a function that produces rows and batch information.

Implementors§