Enum broot::pattern::Pattern[][src]

pub enum Pattern {
    None,
    NameExact(ExactPattern),
    NameFuzzy(FuzzyPattern),
    NameRegex(RegexPattern),
    PathExact(ExactPattern),
    PathFuzzy(FuzzyPattern),
    PathRegex(RegexPattern),
    ContentExact(ContentExactPattern),
    ContentRegex(ContentRegexPattern),
    Composite(CompositePattern),
}

a pattern for filtering and sorting files.

Variants

None
NameExact(ExactPattern)
NameFuzzy(FuzzyPattern)
NameRegex(RegexPattern)
PathExact(ExactPattern)
PathFuzzy(FuzzyPattern)
PathRegex(RegexPattern)
ContentExact(ContentExactPattern)
ContentRegex(ContentRegexPattern)
Composite(CompositePattern)

Implementations

impl Pattern[src]

pub fn new(
    raw_expr: &BeTree<PatternOperator, PatternParts>,
    con: &AppContext
) -> Result<Self, PatternError>
[src]

pub fn object(&self) -> PatternObject[src]

pub fn search_string(&self, candidate: &str) -> Option<NameMatch>[src]

pub fn search_content(
    &self,
    candidate: &Path,
    desired_len: usize
) -> Option<ContentMatch>
[src]

find the content to show next to the name of the file when the search involved a content filtering

pub fn score_of(&self, candidate: Candidate<'_>) -> Option<i32>[src]

pub fn score_of_string(&self, candidate: &str) -> Option<i32>[src]

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

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

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

whether the scores are more than just 0 or 1. When it’s the case, the tree builder will look for more matching results in order to select the best ones.

Trait Implementations

impl Clone for Pattern[src]

impl Debug for Pattern[src]

Auto Trait Implementations

impl RefUnwindSafe for Pattern

impl Send for Pattern

impl Sync for Pattern

impl Unpin for Pattern

impl UnwindSafe for Pattern

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T

type Init = T

The type for initializers.

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

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,