pub enum Error {
MissingVersionInUrl(String),
NonFirstTopLevelHeader(String),
UnrecognizedUrl(String),
WrongCrateNameInUrl(String),
WrongVersionInUrl(String),
}
Expand description
Error returned by rustdocify
.
Variants§
MissingVersionInUrl(String)
NonFirstTopLevelHeader(String)
UnrecognizedUrl(String)
URL is not recognized as valid.
This means that either URL is invalid or this crate has a bug.
§Example
[foo]: https://docs.rs/foo/*/foo/hello_world.html
WrongCrateNameInUrl(String)
Crate name was given to rustdocify
but URL has different crate name.
§Example
[foo]: https://docs.rs/foo/*/DIFFERENT_CRATE
WrongVersionInUrl(String)
Version was given to rustdocify
but URL has different version.
§Example
[foo]: https://docs.rs/foo/DIFFERENT_VERSION
Trait Implementations§
Source§impl Error for Error
impl Error for Error
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
impl StructuralPartialEq for Error
Auto Trait Implementations§
impl Freeze for Error
impl RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl UnwindSafe for Error
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