pub enum BuildBinariesError {
CannotDetermineBuildpackCargoTargetName(DetermineBuildpackCargoTargetNameError),
BuildError(String, BuildError),
MissingBuildpackTarget(String),
}Variants§
CannotDetermineBuildpackCargoTargetName(DetermineBuildpackCargoTargetNameError)
BuildError(String, BuildError)
MissingBuildpackTarget(String)
Trait Implementations§
Source§impl Debug for BuildBinariesError
impl Debug for BuildBinariesError
Source§impl Display for BuildBinariesError
impl Display for BuildBinariesError
Source§impl Error for BuildBinariesError
impl Error for BuildBinariesError
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 BuildBinariesError
impl !RefUnwindSafe for BuildBinariesError
impl Send for BuildBinariesError
impl Sync for BuildBinariesError
impl Unpin for BuildBinariesError
impl UnsafeUnpin for BuildBinariesError
impl !UnwindSafe for BuildBinariesError
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