Enum rustdoc_json::BuildError
source · #[non_exhaustive]
pub enum BuildError {
VirtualManifest(PathBuf),
General(String),
CargoManifestError(Error),
CargoMetadataError(Error),
IoError(Error),
}
Expand description
Represents all errors that can occur when using Builder::build()
.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
VirtualManifest(PathBuf)
You tried to generate rustdoc JSON for a virtual manifest. That does not work. You need to point to the manifest of a real package.
General(String)
A general error. Refer to the attached error message for more info.
CargoManifestError(Error)
An error originating from cargo-manifest
.
CargoMetadataError(Error)
An error originating from cargo_metadata
.
IoError(Error)
Some kind of IO error occurred.
Trait Implementations
sourceimpl Debug for BuildError
impl Debug for BuildError
sourceimpl Display for BuildError
impl Display for BuildError
sourceimpl Error for BuildError
impl Error for BuildError
sourcefn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · sourcefn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
sourceimpl From<Error> for BuildError
impl From<Error> for BuildError
sourceimpl From<Error> for BuildError
impl From<Error> for BuildError
Auto Trait Implementations
impl !RefUnwindSafe for BuildError
impl Send for BuildError
impl Sync for BuildError
impl Unpin for BuildError
impl !UnwindSafe for BuildError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more