pub(crate) struct ItemLink {
pub(crate) link: Box<str>,
pub(crate) link_text: Box<str>,
pub(crate) page_id: DefId,
pub(crate) fragment: Option<UrlFragment>,
}
Expand description
A link that has not yet been rendered.
This link will be turned into a rendered link by Item::links
.
Fields§
§link: Box<str>
The original link written in the markdown
link_text: Box<str>
The link text displayed in the HTML.
This may not be the same as link
if there was a disambiguator
in an intra-doc link (e.g. [fn@f
])
page_id: DefId
The DefId
of the Item whose HTML Page contains the item being
linked to. This will be different to item_id
on item’s that don’t
have their own page, such as struct fields and enum variants.
fragment: Option<UrlFragment>
The url fragment to append to the link
Trait Implementations§
source§impl PartialEq<ItemLink> for ItemLink
impl PartialEq<ItemLink> for ItemLink
impl Eq for ItemLink
impl StructuralEq for ItemLink
impl StructuralPartialEq for ItemLink
Auto Trait Implementations§
impl RefUnwindSafe for ItemLink
impl Send for ItemLink
impl Sync for ItemLink
impl Unpin for ItemLink
impl UnwindSafe for ItemLink
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
source§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,
source§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 72 bytes