[go: up one dir, main page]

Enum rowan::WalkEvent[][src]

pub enum WalkEvent<T> {
    Enter(T),
    Leave(T),
}

WalkeEvent describes tree walking process.

Variants

Fired before traversing the node.

Fired after the node is traversed.

Trait Implementations

impl<T: Debug> Debug for WalkEvent<T>
[src]

Formats the value using the given formatter. Read more

impl<T: Copy> Copy for WalkEvent<T>
[src]

impl<T: Clone> Clone for WalkEvent<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<T> Send for WalkEvent<T> where
    T: Send

impl<T> Sync for WalkEvent<T> where
    T: Sync