macro_rules! tr {
($i:expr, $name:ident, $submac:ident!( $($args:tt)* )) => { ... };
($i:expr, $name:ident, $f:expr) => { ... };
($i:expr, $submac:ident!( $($args:tt)* )) => { ... };
($i:expr, $f:expr) => { ... };
(__impl $i:expr, $name:expr, $submac:ident!( $($args:tt)* )) => { ... };
(__impl $i:expr, $submac:ident!( $($args:tt)* )) => { ... };
(__impl $i:expr, $f:expr) => { ... };
($i:expr, $tag:expr, $name:ident, $submac:ident!( $($args:tt)* )) => { ... };
($i:expr, $tag:expr, $name:ident, $f:expr) => { ... };
($i:expr, $tag:expr, $submac:ident!( $($args:tt)* )) => { ... };
($i:expr, $tag:expr, $f:expr) => { ... };
(__impl $i:expr, $tag:expr, $name:expr, $submac:ident!( $($args:tt)* )) => { ... };
(__impl $i:expr, $tag:expr, $submac:ident!( $($args:tt)* )) => { ... };
(__impl $i:expr, $tag:expr, $f:expr) => { ... };
}Expand description
wrap a nom parser or combinator with this macro to add a trace point