pub struct Matcher<'a, S = usize, A = DenseDFA<&'a [S], S>>where
S: StateID,
A: DFA<ID = S>,{ /* private fields */ }
Expand description
A reference to a Pattern
that matches a single input.
Implementations§
Source§impl<'a, S, A> Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
impl<'a, S, A> Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
Sourcepub fn is_matched(&self) -> bool
pub fn is_matched(&self) -> bool
Returns true
if this Matcher
has matched any input that has been
provided.
Sourcepub fn matches(self, s: &impl AsRef<str>) -> bool
pub fn matches(self, s: &impl AsRef<str>) -> bool
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Debug
.
Sourcepub fn debug_matches(self, d: &impl Debug) -> bool
pub fn debug_matches(self, d: &impl Debug) -> bool
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Debug
.
Sourcepub fn display_matches(self, d: &impl Display) -> bool
pub fn display_matches(self, d: &impl Display) -> bool
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Display
.
Trait Implementations§
Source§impl<'a, S, A> Write for Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
impl<'a, S, A> Write for Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
Source§impl<'a, S, A> Write for Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
impl<'a, S, A> Write for Matcher<'a, S, A>where
S: StateID,
A: DFA<ID = S>,
Source§fn write(&mut self, bytes: &[u8]) -> Result<usize, Error>
fn write(&mut self, bytes: &[u8]) -> Result<usize, Error>
Writes a buffer into this writer, returning how many bytes were written. Read more
Source§fn flush(&mut self) -> Result<(), Error>
fn flush(&mut self) -> Result<(), Error>
Flushes this output stream, ensuring that all intermediately buffered
contents reach their destination. Read more
Source§fn is_write_vectored(&self) -> bool
fn is_write_vectored(&self) -> bool
🔬This is a nightly-only experimental API. (
can_vector
)1.0.0 · Source§fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
Attempts to write an entire buffer into this writer. Read more
Source§fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>
🔬This is a nightly-only experimental API. (
write_all_vectored
)Attempts to write multiple buffers into this writer. Read more
Auto Trait Implementations§
impl<'a, S, A> Freeze for Matcher<'a, S, A>
impl<'a, S, A> RefUnwindSafe for Matcher<'a, S, A>where
A: RefUnwindSafe,
S: RefUnwindSafe,
impl<'a, S, A> Send for Matcher<'a, S, A>
impl<'a, S, A> Sync for Matcher<'a, S, A>
impl<'a, S, A> Unpin for Matcher<'a, S, A>
impl<'a, S, A> UnwindSafe for Matcher<'a, S, A>where
A: UnwindSafe,
S: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)