Trait icu_list::lazy_automaton::LazyAutomaton

source ·
pub trait LazyAutomaton: Automaton {
    // Required method
    fn matches_earliest_fwd_lazy<S: Writeable + ?Sized>(
        &self,
        haystack: &S,
    ) -> bool;
}

Required Methods§

source

fn matches_earliest_fwd_lazy<S: Writeable + ?Sized>(&self, haystack: &S) -> bool

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T: AsRef<[u8]>> LazyAutomaton for DFA<T>

Implementors§