pub enum RecompileError {
VersionMismatch,
Deserialize(Error),
}
Available on crate feature
incremental-cache
only.Expand description
An error returned when recompiling failed.
Variants§
VersionMismatch
The version embedded in the cache entry isn’t the same as cranelift’s current version.
Deserialize(Error)
An error occurred while deserializing the cache entry.
Trait Implementations§
Source§impl Debug for RecompileError
impl Debug for RecompileError
Auto Trait Implementations§
impl Freeze for RecompileError
impl RefUnwindSafe for RecompileError
impl Send for RecompileError
impl Sync for RecompileError
impl Unpin for RecompileError
impl UnwindSafe for RecompileError
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