pub struct XrefQuery<'a> {
pub refdomain: &'a str,
pub reftype: &'a str,
pub reftarget: &'a str,
pub refexplicit: bool,
pub refdoc: &'a str,
pub contnode_text: &'a str,
}Expand description
The pending_xref attributes resolution reads.
Fields§
§refdomain: &'a str§reftype: &'a str§reftarget: &'a str§refexplicit: bool§refdoc: &'a strThe document the reference was written in, which a document-relative
inventory URI is adjusted against (_resolve.py:43-46).
contnode_text: &'a strcontnode.astext().
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for XrefQuery<'a>
impl<'a> RefUnwindSafe for XrefQuery<'a>
impl<'a> Send for XrefQuery<'a>
impl<'a> Sync for XrefQuery<'a>
impl<'a> Unpin for XrefQuery<'a>
impl<'a> UnsafeUnpin for XrefQuery<'a>
impl<'a> UnwindSafe for XrefQuery<'a>
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