[][src]Struct ripgrep_all::adapters::AdapterMeta

pub struct AdapterMeta {
    pub name: String,
    pub version: i32,
    pub description: String,
    pub fast_matchers: Vec<FastMatcher>,
    pub slow_matchers: Option<Vec<SlowMatcher>>,
}

Fields

name: String

unique short name of this adapter (a-z0-9 only)

version: i32

version identifier. used to key cache entries, change if your output format changes

description: Stringfast_matchers: Vec<FastMatcher>

list of matchers (interpreted as ORed)

slow_matchers: Option<Vec<SlowMatcher>>

list of matchers when we have mime type detection active (interpreted as ORed) warning: this overrides the fast matchers

Methods

impl AdapterMeta[src]

pub fn get_matchers<'a>(
    &'a self,
    slow: bool
) -> Box<dyn Iterator<Item = Cow<SlowMatcher>> + 'a>
[src]

Auto Trait Implementations

impl Send for AdapterMeta

impl Sync for AdapterMeta

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[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]