pub enum Error {
Show 21 variants
Asm(u8),
CyclesExceeded,
CyclesOverflow,
ElfBits,
ElfParseError(String),
ElfSegmentUnreadable,
ElfSegmentWritableAndExecutable,
ElfSegmentAddrOrSizeError,
External(String),
InvalidEcall(u64),
InvalidInstruction {
pc: u64,
instruction: u32,
},
InvalidOp(u16),
InvalidVersion,
IO {
kind: ErrorKind,
data: String,
},
MemOutOfBound,
MemOutOfStack,
MemPageUnalignedAccess,
MemWriteOnExecutablePage,
MemWriteOnFreezedPage,
Unexpected(String),
Unimplemented,
}Variants§
Asm(u8)
CyclesExceeded
CyclesOverflow
ElfBits
ElfParseError(String)
ElfSegmentUnreadable
ElfSegmentWritableAndExecutable
ElfSegmentAddrOrSizeError
External(String)
InvalidEcall(u64)
InvalidInstruction
InvalidOp(u16)
InvalidVersion
IO
MemOutOfBound
MemOutOfStack
MemPageUnalignedAccess
MemWriteOnExecutablePage
MemWriteOnFreezedPage
Unexpected(String)
Unimplemented
Trait Implementations§
source§impl Error for Error
impl Error for Error
1.30.0 · source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()