pub struct BrokenLinkReference<'l> {
pub normalized: &'l str,
pub original: &'l str,
}Expand description
Struct to the broken link callback, containing details on the link reference which failed to find a match.
Fields§
§normalized: &'l strThe normalized reference link label. Unicode case folding is applied; see https://github.com/commonmark/commonmark-spec/issues/695 for a discussion on the details of what this exactly means.
original: &'l strThe original text in the link label.
Trait Implementations§
Auto Trait Implementations§
impl<'l> Freeze for BrokenLinkReference<'l>
impl<'l> RefUnwindSafe for BrokenLinkReference<'l>
impl<'l> Send for BrokenLinkReference<'l>
impl<'l> Sync for BrokenLinkReference<'l>
impl<'l> Unpin for BrokenLinkReference<'l>
impl<'l> UnwindSafe for BrokenLinkReference<'l>
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