pub struct PageLoadError {
pub page_id: PageId,
pub title: String,
pub error: String,
}Expand description
A page that could not be loaded during link analysis.
Fields§
§page_id: PageIdId of the page that failed to load.
title: StringTitle from the metadata index.
error: StringHuman-readable error message.
Trait Implementations§
Source§impl Clone for PageLoadError
impl Clone for PageLoadError
Source§fn clone(&self) -> PageLoadError
fn clone(&self) -> PageLoadError
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 PageLoadError
impl RefUnwindSafe for PageLoadError
impl Send for PageLoadError
impl Sync for PageLoadError
impl Unpin for PageLoadError
impl UnsafeUnpin for PageLoadError
impl UnwindSafe for PageLoadError
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