func symbol_href(reference: &String, module: &String, owner: &String, current_page: &String, symbols: &[SymbolLink]) -> String?Resolves one source-spelled symbol reference to its documentation URL.
Owner-local and module-local declarations take precedence over package-wide matches. Ambiguous or syntactically invalid references return none.
View Source
pub func symbol_href(reference: &String, module: &String, owner: &String, current_page: &String, symbols: &[SymbolLink]) -> String? {
resolve_symbol(text: reference, module: module, owner: owner, current_page: current_page, symbols: symbols)
}