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

type ScanResult = Arc<Mutex<dyn RecordBatchReader + Send + Sync>>;

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