pub trait HasExtraState<T> {
    // Required method
    fn get_extra_state(&self) -> T;
}

Required Methods§

source

fn get_extra_state(&self) -> T

Implementations on Foreign Types§

source§

impl<T, U, V> HasExtraState<T> for LocatedSpan<U, V>where V: HasExtraState<T>,

source§

impl HasExtraState<()> for &[u8]

source§

impl<T> HasExtraState<()> for LocatedSpan<T, ()>

source§

impl HasExtraState<()> for &str

Implementors§