[][src]Struct broot::pattern::Candidate

pub struct Candidate<'c> {
    pub path: &'c Path,
    pub subpath: &'c str,
    pub name: &'c str,
    pub regular_file: bool,
}

something which we can be evaluated by a pattern to produce either a score or a more precise match

Fields

path: &'c Path

path to the file to open if the pattern searches into files

subpath: &'c str

path from the current root

name: &'c str

filename

regular_file: bool

whether the file is regular (ie has a searchable content)

Implementations

impl<'c> Candidate<'c>[src]

pub fn from(line: &'c TreeLine) -> Self[src]

Trait Implementations

impl<'c> Clone for Candidate<'c>[src]

impl<'c> Copy for Candidate<'c>[src]

impl<'c> Debug for Candidate<'c>[src]

Auto Trait Implementations

impl<'c> RefUnwindSafe for Candidate<'c>

impl<'c> Send for Candidate<'c>

impl<'c> Sync for Candidate<'c>

impl<'c> Unpin for Candidate<'c>

impl<'c> UnwindSafe for Candidate<'c>

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> 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.