Struct matchers::Matcher [−][src]
pub struct Matcher<'a, S = usize, A = DenseDFA<&'a [S], S>> where
S: StateID,
A: DFA<ID = S>, { /* fields omitted */ }
A reference to a Pattern
that matches a single input.
Implementations
impl<'a, S, A> Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
impl<'a, S, A> Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]pub fn is_matched(&self) -> bool
[src]
Returns true
if this Matcher
has matched any input that has been
provided.
pub fn matches(self, s: &impl AsRef<str>) -> bool
[src]
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Debug
.
pub fn debug_matches(self, d: &impl Debug) -> bool
[src]
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Debug
.
pub fn display_matches(self, d: &impl Display) -> bool
[src]
Returns true
if this pattern matches the formatted output of the given
type implementing fmt::Display
.
pub fn read_matches(self, io: impl Read + Sized) -> Result<bool>
[src]
Returns either a bool
indicating whether or not this pattern matches the
data read from the provided io::Read
stream, or an io::Error
if an
error occurred reading from the stream.
Trait Implementations
impl<'a, S, A> Write for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
impl<'a, S, A> Write for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]fn write(&mut self, bytes: &[u8]) -> Result<usize, Error>
[src]
fn flush(&mut self) -> Result<(), Error>
[src]
pub fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>
1.36.0[src]
pub fn is_write_vectored(&self) -> bool
[src]
pub fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>
1.0.0[src]
pub fn write_all_vectored(
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
[src]
&mut self,
bufs: &mut [IoSlice<'_>]
) -> Result<(), Error>
pub fn write_fmt(&mut self, fmt: Arguments<'_>) -> Result<(), Error>
1.0.0[src]
pub fn by_ref(&mut self) -> &mut Self
1.0.0[src]
Auto Trait Implementations
impl<'a, S, A> RefUnwindSafe for Matcher<'a, S, A> where
A: RefUnwindSafe,
S: RefUnwindSafe,
A: RefUnwindSafe,
S: RefUnwindSafe,
impl<'a, S, A> Send for Matcher<'a, S, A> where
A: Send,
S: Send,
A: Send,
S: Send,
impl<'a, S, A> Sync for Matcher<'a, S, A> where
A: Sync,
S: Sync,
A: Sync,
S: Sync,
impl<'a, S, A> Unpin for Matcher<'a, S, A> where
A: Unpin,
S: Unpin,
A: Unpin,
S: Unpin,
impl<'a, S, A> UnwindSafe for Matcher<'a, S, A> where
A: UnwindSafe,
S: UnwindSafe,
A: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
[src]
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
[src]pub fn write_u8(&mut self, n: u8) -> Result<(), Error>
[src]
pub fn write_i8(&mut self, n: i8) -> Result<(), Error>
[src]
pub fn write_u16<T>(&mut self, n: u16) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i16<T>(&mut self, n: i16) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_u24<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i24<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_u32<T>(&mut self, n: u32) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i32<T>(&mut self, n: i32) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_u48<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i48<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_u64<T>(&mut self, n: u64) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i64<T>(&mut self, n: i64) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_u128<T>(&mut self, n: u128) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_i128<T>(&mut self, n: i128) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_uint<T>(&mut self, n: u64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_int<T>(&mut self, n: i64, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_uint128<T>(&mut self, n: u128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_int128<T>(&mut self, n: i128, nbytes: usize) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_f32<T>(&mut self, n: f32) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,
pub fn write_f64<T>(&mut self, n: f64) -> Result<(), Error> where
T: ByteOrder,
[src]
T: ByteOrder,