pub enum CheckError {
IntraDocLink(String),
File(PathBuf),
Http(Url),
HttpForbidden(Url),
Fragment(Link, String, Option<Vec<String>>),
Io(Box<IoError>),
}Variants§
IntraDocLink(String)
An intra-doc link went unresolved by rustdoc and ended up in the final HTML
File(PathBuf)
A relatively linked file did not exist
Http(Url)
A linked HTTP URL did not exist
HttpForbidden(Url)
An HTTP URL was encountered, but HTTP checking was forbidden
Fragment(Link, String, Option<Vec<String>>)
The linked file existed, but was missing the linked HTML anchor
Io(Box<IoError>)
An error occured while trying to find whether the file or URL existed
Trait Implementations§
Source§impl Debug for CheckError
impl Debug for CheckError
Source§impl Display for CheckError
impl Display for CheckError
Auto Trait Implementations§
impl Freeze for CheckError
impl !RefUnwindSafe for CheckError
impl Send for CheckError
impl Sync for CheckError
impl Unpin for CheckError
impl !UnwindSafe for CheckError
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