TypeVisitTrait

Trait TypeVisitTrait 

Source
pub trait TypeVisitTrait {
    // Required method
    fn visit_type<F>(&self, f: &mut F)
       where F: FnMut(&LuaType);
}

Required Methods§

Source

fn visit_type<F>(&self, f: &mut F)
where F: FnMut(&LuaType),

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§