pub struct IndexerOptions {
pub validate: bool,
pub ignore: Vec<Regex>,
pub force_index: Vec<Regex>,
pub index_metadata: bool,
pub config_filename: String,
}Expand description
Options controlling how a BIDS dataset directory is indexed.
These options determine which files are included in the index, whether BIDS validation is enforced, and whether JSON sidecar metadata is loaded.
Fields§
§validate: bool§ignore: Vec<Regex>§force_index: Vec<Regex>§index_metadata: bool§config_filename: StringTrait Implementations§
Auto Trait Implementations§
impl Freeze for IndexerOptions
impl RefUnwindSafe for IndexerOptions
impl Send for IndexerOptions
impl Sync for IndexerOptions
impl Unpin for IndexerOptions
impl UnsafeUnpin for IndexerOptions
impl UnwindSafe for IndexerOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more