pub trait DefDict: HaystackDict {
    fn def_symbol(&self) -> &Symbol { ... }
    fn def_name(&self) -> &String { ... }
}
Expand description

Def trait for a Haystack Dict

Provided Methods

Return the def Symbol, empty symbol if there is no def tag, for the def dict

Return the def Symbol name

Implementors