[][src]Struct meli::conf::themes::regexp::RegexpWrapper

pub struct RegexpWrapper(pub Regex);

Implementations

impl RegexpWrapper[src]

pub(super) fn new(
    pattern: &str,
    caseless: bool,
    dotall: bool,
    extended: bool,
    multi_line: bool,
    ucp: bool,
    jit_if_available: bool
) -> Result<Self, Error>
[src]

pub fn find_iter<'w, 's>(&'w self, s: &'s str) -> FindIter<'w, 's>

Notable traits for FindIter<'r, 's>

impl<'r, 's> Iterator for FindIter<'r, 's> type Item = (usize, usize);
[src]

Trait Implementations

impl Clone for RegexpWrapper[src]

impl Debug for RegexpWrapper[src]

impl Default for RegexpWrapper[src]

impl Eq for RegexpWrapper[src]

impl Hash for RegexpWrapper[src]

impl PartialEq<RegexpWrapper> for RegexpWrapper[src]

Auto Trait Implementations

impl !RefUnwindSafe for RegexpWrapper

impl Send for RegexpWrapper

impl Sync for RegexpWrapper

impl Unpin for RegexpWrapper

impl UnwindSafe for RegexpWrapper

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]