[][src]Struct ieql::query::trigger::CompiledTrigger

pub struct CompiledTrigger {
    pub pattern: CompiledPattern,
    pub id: String,
}

Fields

pattern: CompiledPatternid: String

Methods

impl CompiledTrigger[src]

pub fn quick_check(&self, other: &String) -> bool[src]

Checks if the Trigger matches the given string without extracting any type of excerpt.

This is typically much faster than performing a full_check().

pub fn full_check(&self, other: &String) -> Option<PatternMatch>[src]

Checks if the Trigger matches the given string and extracts an excerpt.

This is typically slower than quick_check(), and in most scenarios it makes sense to run quick_check() first before running this function.

Trait Implementations

impl CompilableTo<CompiledTrigger> for Trigger[src]

impl Clone for CompiledTrigger[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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]