pub trait IsBuildBackendError:
Error
+ Send
+ Sync
+ 'static {
// Required method
fn is_build_backend_error(&self) -> bool;
}Expand description
Inspect whether an error type is a build error.
Required Methods§
Sourcefn is_build_backend_error(&self) -> bool
fn is_build_backend_error(&self) -> bool
Returns whether the build backend failed to build the package, so it’s not a uv error.