Skip to main content

IntersphinxMapping

Type Alias IntersphinxMapping 

Source
pub type IntersphinxMapping = BTreeMap<String, (String, Vec<Option<String>>)>;
Expand description

The normalised intersphinx_mapping: project name -> (target URI, inventory locations). Sphinx stores {name: (name, (uri, locations))} with the name duplicated inside the value (_load.py:129); the key is the same string, so this drops the duplicate.

A location of None means “objects.inv under the target URI”.

Aliased Type§

pub struct IntersphinxMapping { /* private fields */ }