[][src]Struct ucglib::ast::walk::AstWalker

pub struct AstWalker<'a> { /* fields omitted */ }

Methods

impl<'a> AstWalker<'a>[src]

pub fn new() -> Self[src]

pub fn with_value_handler(self, h: &'a dyn Fn(&mut Value)) -> Self[src]

pub fn with_expr_handler(self, h: &'a dyn Fn(&mut Expression)) -> Self[src]

pub fn with_stmt_handler(self, h: &'a dyn Fn(&mut Statement)) -> Self[src]

Trait Implementations

impl<'a> Walker for AstWalker<'a>[src]

fn walk_statement_list(&mut self, stmts: Vec<&mut Statement>)[src]

fn walk_statement(&mut self, stmt: &mut Statement)[src]

fn walk_fieldset(&mut self, fs: &mut FieldList)[src]

fn walk_expression(&mut self, expr: &mut Expression)[src]

Auto Trait Implementations

impl<'a> !Send for AstWalker<'a>

impl<'a> !Sync for AstWalker<'a>

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]