pub struct IncompleteLink {
pub reference: String,
pub file: FileId,
pub span: Span,
}Expand description
A potential link that has a broken reference (e.g [foo] when there is no
[foo]: ... entry at the bottom).
Fields§
§reference: StringThe reference name (e.g. the foo in [foo]).
file: FileIdWhich file was the incomplete link found in?
span: SpanWhere this incomplete link occurred in the source text.
Trait Implementations§
Source§impl Clone for IncompleteLink
impl Clone for IncompleteLink
Source§fn clone(&self) -> IncompleteLink
fn clone(&self) -> IncompleteLink
Returns a duplicate of the value. Read more
1.0.0 · 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 IncompleteLink
impl Debug for IncompleteLink
Source§impl PartialEq for IncompleteLink
impl PartialEq for IncompleteLink
impl StructuralPartialEq for IncompleteLink
Auto Trait Implementations§
impl Freeze for IncompleteLink
impl RefUnwindSafe for IncompleteLink
impl Send for IncompleteLink
impl Sync for IncompleteLink
impl Unpin for IncompleteLink
impl UnwindSafe for IncompleteLink
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