[][src]Type Definition datafusion::datasource::datasource::ScanResult

type ScanResult = Arc<Mutex<dyn BatchIterator>>;

Returned by implementors of Table#scan, this BatchIterator is wrapped with an Arc and Mutex so that it can be shared across threads as it is used.