pub enum BundleAssemblyError {
SerializeManifest(Error),
BuildTar(Error),
LayerMismatch(String),
}Expand description
Assembly failed: the parts do not describe one consistent artifact.
Variants§
SerializeManifest(Error)
The bundle manifest could not be serialized.
BuildTar(Error)
A tar entry could not be written.
LayerMismatch(String)
The layer list does not match the config’s declared files.
Trait Implementations§
Source§impl Debug for BundleAssemblyError
impl Debug for BundleAssemblyError
Source§impl Display for BundleAssemblyError
impl Display for BundleAssemblyError
Source§impl Error for BundleAssemblyError
impl Error for BundleAssemblyError
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 !RefUnwindSafe for BundleAssemblyError
impl !UnwindSafe for BundleAssemblyError
impl Freeze for BundleAssemblyError
impl Send for BundleAssemblyError
impl Sync for BundleAssemblyError
impl Unpin for BundleAssemblyError
impl UnsafeUnpin for BundleAssemblyError
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