[][src]Struct ignore::overrides::Override

pub struct Override(_);

Manages a set of overrides provided explicitly by the end user.

Methods

impl Override[src]

pub fn empty() -> Override[src]

Returns an empty matcher that never matches any file path.

pub fn path(&self) -> &Path[src]

Returns the directory of this override set.

All matches are done relative to this path.

pub fn is_empty(&self) -> bool[src]

Returns true if and only if this matcher is empty.

When a matcher is empty, it will never match any file path.

pub fn num_ignores(&self) -> u64[src]

Returns the total number of ignore globs.

pub fn num_whitelists(&self) -> u64[src]

Returns the total number of whitelisted globs.

pub fn matched<'a, P: AsRef<Path>>(
    &'a self,
    path: P,
    is_dir: bool
) -> Match<Glob<'a>>
[src]

Returns whether the given file path matched a pattern in this override matcher.

is_dir should be true if the path refers to a directory and false otherwise.

If there are no overrides, then this always returns Match::None.

If there is at least one whitelist override and is_dir is false, then this never returns Match::None, since non-matches are interpreted as ignored.

The given path is matched to the globs relative to the path given when building the override matcher. Specifically, before matching path, its prefix (as determined by a common suffix of the directory given) is stripped. If there is no common suffix/prefix overlap, then path is assumed to reside in the same directory as the root path for this set of overrides.

Trait Implementations

impl Clone for Override[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Override[src]

Auto Trait Implementations

impl Sync for Override

impl Unpin for Override

impl Send for Override

impl !UnwindSafe for Override

impl !RefUnwindSafe for Override

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]