pub struct BrokenLink {
pub source_title: String,
pub source_id: PageId,
pub target: String,
}Expand description
A link target that could not be resolved to any known page.
Fields§
§source_title: StringTitle of the page containing the broken link.
source_id: PageIdId of the page containing the broken link.
target: StringThe raw unresolved link target.
Trait Implementations§
Source§impl Clone for BrokenLink
impl Clone for BrokenLink
Source§fn clone(&self) -> BrokenLink
fn clone(&self) -> BrokenLink
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 BrokenLink
impl RefUnwindSafe for BrokenLink
impl Send for BrokenLink
impl Sync for BrokenLink
impl Unpin for BrokenLink
impl UnsafeUnpin for BrokenLink
impl UnwindSafe for BrokenLink
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