[][src]Enum raur_ext::SearchBy

pub enum SearchBy {
    Name,
    NameDesc,
    Maintainer,
    Depends,
    MakeDepends,
    OptDepends,
    CheckDepends,
}

What field to search by.

Name and NameDesc will match if your query is a substring of what you are searching by. The others will only match on exact matches.

Variants

Name

search by package name only

NameDesc

search by package name and description (default)

Maintainer

search by package maintainer

Depends

search for packages that depend on the query

MakeDepends

search for packages that makedepend on the query

OptDepends

search for packages that optdepend on the query

CheckDepends

search for packages that checkdepend on the query

Trait Implementations

impl Display for SearchBy[src]

impl Debug for SearchBy[src]

Auto Trait Implementations

impl Send for SearchBy

impl Sync for SearchBy

Blanket Implementations

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

impl<T> ToString for T where
    T: Display + ?Sized
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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