pub trait ImportSource: Debug + PartialEq {
    fn table(&self) -> &str;
    fn sid(&self) -> SymbolId;
}
Expand description

The shared symbol table source of a given SymbolToken.

Required Methods

The name of the shared symbol table that the token is from.

The ID within the shared symbol table that the token is positioned in.

Implementors