pub struct ResolvedLink {
pub id: ItemId,
pub crate_id: u32,
pub path: Vec<String>,
pub kind: ItemKind,
pub external: bool,
pub html_root_url: Option<String>,
}Fields§
§id: ItemId§crate_id: u32§path: Vec<String>§kind: ItemKind§external: bool§html_root_url: Option<String>Trait Implementations§
Source§impl Clone for ResolvedLink
impl Clone for ResolvedLink
Source§fn clone(&self) -> ResolvedLink
fn clone(&self) -> ResolvedLink
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 moreAuto Trait Implementations§
impl Freeze for ResolvedLink
impl RefUnwindSafe for ResolvedLink
impl Send for ResolvedLink
impl Sync for ResolvedLink
impl Unpin for ResolvedLink
impl UnsafeUnpin for ResolvedLink
impl UnwindSafe for ResolvedLink
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