Struct matchers::Matcher [−][src]
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]
S: StateID,
A: DFA<ID = S>,
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: Clone, A: Clone> Clone for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
S: StateID,
A: DFA<ID = S>,
impl<'a, S: Debug, A: Debug> Debug for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
S: StateID,
A: DFA<ID = S>,
impl<'a, S, A> Write for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
S: StateID,
A: DFA<ID = S>,
fn write_str(&mut self, s: &str) -> Result
[src]
pub fn write_char(&mut self, c: char) -> Result<(), Error>
1.1.0[src]
pub fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>
1.0.0[src]
impl<'a, S, A> Write for Matcher<'a, S, A> where
S: StateID,
A: DFA<ID = S>,
[src]
S: StateID,
A: DFA<ID = S>,
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<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T
[src]
pub fn clone_into(&self, target: &mut T)
[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<W> WriteBytesExt for W where
W: Write + ?Sized,
[src]
W: Write + ?Sized,
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,