logo
pub struct Filter {
    pub in_path: Option<PathBuf>,
    pub on: Matcher,
    pub op: Op,
    pub pat: Pattern,
    pub negate: bool,
}
Expand description

A tagged filter.

Fields

in_path: Option<PathBuf>

Path the filter applies from.

on: Matcher

Which tag the filter applies to.

op: Op

The operation to perform on the tag’s value.

pat: Pattern

The pattern to match against the tag’s value.

negate: bool

If true, a positive match with this filter will override negative matches from previous filters on the same tag, and negative matches will be ignored.

Implementations

Matches the filter against a subject.

This is really an internal method to the tagged filterer machinery, exposed so you can build your own filterer using the same types or the textual syntax. As such its behaviour is not guaranteed to be stable (its signature is, though).

Create a filter from a gitignore-style glob pattern.

The optional path is for the in_path field of the filter. When parsing gitignore files, it should be set to the path of the directory the ignore file is in.

The resulting filter matches on Path, with the NotGlob op, and a Glob pattern. If it starts with a !, it is negated.

Returns the filter with its in_path canonicalised.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more