pub enum VerifyError {
UnknownOpcode {
at: usize,
byte: u8,
},
ConstOutOfRange {
at: usize,
index: u32,
len: usize,
},
FunctionOutOfRange {
at: usize,
index: u32,
len: usize,
},
JumpOutOfRange {
at: usize,
target: i64,
len: usize,
},
EmptyFunctionTable,
EntryOutOfRange {
function: usize,
entry: u32,
len: usize,
},
}Expand description
Why a Chunk failed verification.
The verifier’s job is to make every fact the interpreter’s hot loop
relies on (jump targets in range, constant/function indices in range)
true before a single instruction runs, so byteflow-vm never has to
re-check them per-step. Skipping this on trusted, compiler-generated
bytecode is fine; it is mandatory before loading anything that crossed a
trust boundary (a plugin, a network-fetched module, see design notes
§24 capability/sandboxing).
Variants§
Trait Implementations§
Source§impl Clone for VerifyError
impl Clone for VerifyError
Source§fn clone(&self) -> VerifyError
fn clone(&self) -> VerifyError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for VerifyError
impl Debug for VerifyError
Source§impl Display for VerifyError
impl Display for VerifyError
impl Eq for VerifyError
Source§impl Error for VerifyError
impl Error for VerifyError
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()
Source§impl PartialEq for VerifyError
impl PartialEq for VerifyError
impl StructuralPartialEq for VerifyError
Auto Trait Implementations§
impl Freeze for VerifyError
impl RefUnwindSafe for VerifyError
impl Send for VerifyError
impl Sync for VerifyError
impl Unpin for VerifyError
impl UnsafeUnpin for VerifyError
impl UnwindSafe for VerifyError
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