pub enum BadBundle {
Format {
found: u32,
expected: u32,
},
Shape {
found: String,
expected: String,
},
Malformed(String),
}Expand description
Why a bundle could not be read.
Variants§
Format
Written by a compiler whose format this kernel does not implement.
Shape
Written by a compiler whose primitives are numbered differently.
Malformed(String)
Trait Implementations§
Source§impl Error for BadBundle
impl Error for BadBundle
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()
impl Eq for BadBundle
impl StructuralPartialEq for BadBundle
Auto Trait Implementations§
impl Freeze for BadBundle
impl RefUnwindSafe for BadBundle
impl Send for BadBundle
impl Sync for BadBundle
impl Unpin for BadBundle
impl UnwindSafe for BadBundle
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