pub enum DecompileError {
InvalidBytecode(String),
LuaStateCreationFailed,
LoadFailed(String),
DecompilationFailed(String),
InternalError(String),
NullPointer,
Io(Error),
}
Expand description
Errors that can occur during Lua bytecode decompilation
Variants§
InvalidBytecode(String)
LuaStateCreationFailed
LoadFailed(String)
DecompilationFailed(String)
InternalError(String)
NullPointer
Io(Error)
Trait Implementations§
Source§impl Debug for DecompileError
impl Debug for DecompileError
Source§impl Display for DecompileError
impl Display for DecompileError
Source§impl Error for DecompileError
impl Error for DecompileError
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 DecompileError
impl !RefUnwindSafe for DecompileError
impl Send for DecompileError
impl Sync for DecompileError
impl Unpin for DecompileError
impl !UnwindSafe for DecompileError
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