pub struct FilesData {
pub include: GlobSet,
pub exclude: GlobSet,
pub paths: Vec<PathBuf>,
}
Expand description
Data related to files.
Fields§
§include: GlobSet
Kind of files included in a search.
exclude: GlobSet
Kind of files excluded from a search.
paths: Vec<PathBuf>
List of file paths.
Auto Trait Implementations§
impl Freeze for FilesData
impl RefUnwindSafe for FilesData
impl Send for FilesData
impl Sync for FilesData
impl Unpin for FilesData
impl UnwindSafe for FilesData
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