Type Alias Builder
Source pub type Builder<Types, Provider> = Builder<Types, SqlStorage, Provider>;
struct Builder<Types, Provider> {Show 17 fields
storage: SqlStorage,
provider: Provider,
backoff: ExponentialBackoffBuilder<SystemClock>,
rate_limit: usize,
range_chunk_size: usize,
minor_scan_interval: Duration,
major_scan_interval: usize,
major_scan_offset: usize,
proactive_range_chunk_size: Option<usize>,
active_fetch_delay: Duration,
chunk_fetch_delay: Duration,
proactive_fetching: bool,
aggregator: bool,
aggregator_chunk_size: Option<usize>,
types_migration_batch_size: u64,
leaf_only: bool,
_types: PhantomData<Types>,
}