pub trait HasRecursiveInfo {
    // Required methods
    fn get_recursive_info(&self) -> RecursiveInfo;
    fn set_recursive_info(self, info: RecursiveInfo) -> Self;
}
Expand description

Trait for recursive tracer

The input type of nom parser must implement this.

Required Methods§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T, U> HasRecursiveInfo for LocatedSpan<T, U>

Implementors§