Struct thirtyfour_query::StringMatch[][src]

pub struct StringMatch { /* fields omitted */ }

This is a re-export of stringmatch::StringMatch.

Implementations

impl StringMatch[src]

This is a re-export of stringmatch::StringMatch.

pub fn new<S>(text: S) -> StringMatch where
    S: Into<String>, 
[src]

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

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

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

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

pub fn partial(self) -> StringMatch[src]

pub fn full(self) -> StringMatch[src]

pub fn word(self) -> StringMatch[src]

pub fn case_insensitive(self) -> StringMatch[src]

pub fn case_sensitive(self) -> StringMatch[src]

Trait Implementations

impl Clone for StringMatch[src]

impl Debug for StringMatch[src]

impl<S> From<S> for StringMatch where
    S: Into<String>, 
[src]

impl Needle for StringMatch[src]

Auto Trait Implementations

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