Enum rustdoc_json::BuildError
source · [−]pub enum BuildError {
VirtualManifest(PathBuf),
General(String),
CargoTomlError(Error),
CargoMetadataError(Error),
IoError(Error),
}
Expand description
Represent all errors that can occur when using build()
and
build_quietly()
.
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.
CargoTomlError(Error)
An error originating from cargo_toml
.
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
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
🔬 This is a nightly-only experimental API. (
backtrace
)Returns a stack backtrace, if available, of where this error occurred. 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 T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
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