Struct regex_syntax::hir::print::Writer[][src]

struct Writer<'p, W> {
    printer: &'p mut Printer,
    wtr: W,
}

Fields

Methods

impl<'p, W: Write> Writer<'p, W>
[src]

Trait Implementations

impl<'p, W: Debug> Debug for Writer<'p, W>
[src]

Formats the value using the given formatter. Read more

impl<'p, W: Write> Visitor for Writer<'p, W>
[src]

The result of visiting an HIR.

An error that visiting an HIR might return.

All implementors of Visitor must provide a finish method, which yields the result of visiting the HIR or an error. Read more

This method is called on an Hir before descending into child Hir nodes. Read more

This method is called on an Hir after descending all of its child Hir nodes. Read more

This method is called between child nodes of an alternation.

This method is called before beginning traversal of the HIR.

Auto Trait Implementations

impl<'p, W> Send for Writer<'p, W> where
    W: Send

impl<'p, W> Sync for Writer<'p, W> where
    W: Sync