pub enum BaseInputsError {
Tool(GitToolError),
Data(BaseError),
Declarations {
header: BaseError,
findings: Findings,
},
}Expand description
Failure while assembling base-revision ownership inputs.
Variants§
Tool(GitToolError)
The Git executable could not be started.
Data(BaseError)
A coded Git listing, blob, or candidate-path failure.
Declarations
Base package discovery produced findings under a BXW0105 header.
Trait Implementations§
Source§impl Debug for BaseInputsError
impl Debug for BaseInputsError
Source§impl Display for BaseInputsError
impl Display for BaseInputsError
Source§impl Error for BaseInputsError
impl Error for BaseInputsError
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()
Auto Trait Implementations§
impl Freeze for BaseInputsError
impl RefUnwindSafe for BaseInputsError
impl Send for BaseInputsError
impl Sync for BaseInputsError
impl Unpin for BaseInputsError
impl UnsafeUnpin for BaseInputsError
impl UnwindSafe for BaseInputsError
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