teamy-mft 0.7.1

TeamDman's Master File Table CLI and library for NTFS.
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>,
}