Struct globset::GlobSet [] [src]

pub struct GlobSet { /* fields omitted */ }

GlobSet represents a group of globs that can be matched together in a single pass.

Methods

impl GlobSet
[src]

[src]

Returns true if this set is empty, and therefore matches nothing.

[src]

Returns the number of globs in this set.

[src]

Returns true if any glob in this set matches the path given.

[src]

Returns true if any glob in this set matches the path given.

This takes a Candidate as input, which can be used to amortize the cost of preparing a path for matching.

[src]

Returns the sequence number of every glob pattern that matches the given path.

[src]

Returns the sequence number of every glob pattern that matches the given path.

This takes a Candidate as input, which can be used to amortize the cost of preparing a path for matching.

[src]

Adds the sequence number of every glob pattern that matches the given path to the vec given.

into is is cleared before matching begins, and contains the set of sequence numbers (in ascending order) after matching ends. If no globs were matched, then into will be empty.

[src]

Adds the sequence number of every glob pattern that matches the given path to the vec given.

into is is cleared before matching begins, and contains the set of sequence numbers (in ascending order) after matching ends. If no globs were matched, then into will be empty.

This takes a Candidate as input, which can be used to amortize the cost of preparing a path for matching.

Trait Implementations

impl Clone for GlobSet
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for GlobSet
[src]

[src]

Formats the value using the given formatter.