Struct ignore::types::Types
[−]
[src]
pub struct Types { /* fields omitted */ }Types is a file type matcher.
Methods
impl Types[src]
fn empty() -> Types[src]
Creates a new file type matcher that never matches any path and contains no file type definitions.
fn is_empty(&self) -> bool[src]
Returns true if and only if this matcher has zero selections.
fn len(&self) -> usize[src]
Returns the number of selections used in this matcher.
fn definitions(&self) -> &[FileTypeDef][src]
Return the set of current file type definitions.
Definitions and globs are sorted.
fn matched<'a, P: AsRef<Path>>(
&'a self,
path: P,
is_dir: bool
) -> Match<Glob<'a>>[src]
&'a self,
path: P,
is_dir: bool
) -> Match<Glob<'a>>
Returns a match for the given path against this file type matcher.
The path is considered whitelisted if it matches a selected file type.
The path is considered ignored if it matches a negated file type.
If at least one file type is selected and path doesn't match, then
the path is also considered ignored.
Trait Implementations
impl Clone for Types[src]
fn clone(&self) -> Types[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more