pub trait HasModule<'ctx> { // Required method fn module(&self) -> Option<&'ctx str>; }
Trait for types that can provide their containing module.
Get the module name where this symbol is defined.