1 2 3 4 5 6 7
use crate::query::QueryResultRow; #[derive(Debug, Default)] pub(crate) struct DriveQueryResult { pub(crate) loaded_rows: usize, pub(crate) matched_rows: Vec<QueryResultRow>, }