pub struct IntersphinxData {
pub main: Inventory,
pub named: BTreeMap<String, Inventory>,
}Expand description
The loaded inventories: the merged “main” one every un-named lookup goes
through, and the per-project ones an inv:target or :external+inv:
reference names (_shared.py:114-149, InventoryAdapter).
Fields§
§main: Inventory§named: BTreeMap<String, Inventory>Implementations§
Trait Implementations§
Source§impl Clone for IntersphinxData
impl Clone for IntersphinxData
Source§fn clone(&self) -> IntersphinxData
fn clone(&self) -> IntersphinxData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IntersphinxData
impl Debug for IntersphinxData
Source§impl Default for IntersphinxData
impl Default for IntersphinxData
Source§fn default() -> IntersphinxData
fn default() -> IntersphinxData
Returns the “default value” for a type. Read more
Source§impl PartialEq for IntersphinxData
impl PartialEq for IntersphinxData
impl StructuralPartialEq for IntersphinxData
Auto Trait Implementations§
impl Freeze for IntersphinxData
impl RefUnwindSafe for IntersphinxData
impl Send for IntersphinxData
impl Sync for IntersphinxData
impl Unpin for IntersphinxData
impl UnsafeUnpin for IntersphinxData
impl UnwindSafe for IntersphinxData
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more