Struct Printer
struct Printer { ... }
A printer for a regular expression's high-level intermediate representation.
A printer converts a high-level intermediate representation (HIR) to a regular expression pattern string. This particular printer uses constant stack space and heap space proportional to the size of the HIR.
Since this printer is only using the HIR, the pattern it prints will likely
not resemble the original pattern at all. For example, a pattern like
\pL will have its entire class written out.
The purpose of this printer is to provide a means to mutate an HIR and then build a regular expression from the result of that mutation. (A regex library could provide a constructor from this HIR explicitly, but that creates an unnecessary public coupling between the regex library and this specific HIR representation.)
Implementations
impl Printer
fn new() -> PrinterCreate a new printer.
fn print<W: fmt::Write>(self: &mut Self, hir: &Hir, wtr: W) -> ResultPrint the given
Astto the given writer. The writer must implementfmt::Write. Typical implementations offmt::Writethat can be used here are afmt::Formatter(which is available infmt::Displayimplementations) or a&mut String.
impl Debug for Printer
fn fmt(self: &Self, f: &mut Formatter<'_>) -> Result
impl Freeze for Printer
impl RefUnwindSafe for Printer
impl Send for Printer
impl Sync for Printer
impl Unpin for Printer
impl UnsafeUnpin for Printer
impl UnwindSafe for Printer
impl<T> Any for Printer
fn type_id(self: &Self) -> TypeId
impl<T> Borrow for Printer
fn borrow(self: &Self) -> &T
impl<T> BorrowMut for Printer
fn borrow_mut(self: &mut Self) -> &mut T
impl<T> From for Printer
fn from(t: T) -> TReturns the argument unchanged.
impl<T, U> Into for Printer
fn into(self: Self) -> UCalls
U::from(self).That is, this conversion is whatever the implementation of
[From]<T> for Uchooses to do.
impl<T, U> TryFrom for Printer
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto for Printer
fn try_into(self: Self) -> Result<U, <U as TryFrom<T>>::Error>