Enum synfx_dsp_jit::JITCompileError
source · [−]pub enum JITCompileError {
BadDefinedParams,
UnknownFunction(String),
UndefinedVariable(String),
UnknownTable(usize),
InvalidReturnValueAccess(String),
DeclareTopFunError(String),
DefineTopFunError(String),
UndefinedDSPNode(String),
UnknownBuffer(usize),
NoValueBufferWrite(usize),
NotEnoughArgsInCall(String, u64),
NodeStateError(String, u64),
}
Expand description
Error enum for JIT compilation errors.
Variants
BadDefinedParams
UnknownFunction(String)
UndefinedVariable(String)
UnknownTable(usize)
InvalidReturnValueAccess(String)
DeclareTopFunError(String)
DefineTopFunError(String)
UndefinedDSPNode(String)
UnknownBuffer(usize)
NoValueBufferWrite(usize)
NotEnoughArgsInCall(String, u64)
NodeStateError(String, u64)
Trait Implementations
sourceimpl Clone for JITCompileError
impl Clone for JITCompileError
sourcefn clone(&self) -> JITCompileError
fn clone(&self) -> JITCompileError
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations
impl RefUnwindSafe for JITCompileError
impl Send for JITCompileError
impl Sync for JITCompileError
impl Unpin for JITCompileError
impl UnwindSafe for JITCompileError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more