pub enum BlkJITCompileError {
Show 13 variants
UnknownError,
NoSynfxDSPJit,
BadTree(ASTNodeRef),
NoOutputAtIdx(String, usize),
ASTMissingOutputLabel(usize),
NoTmpVarForOutput(usize, String),
BadLiteralNumber(String),
NodeWithoutID(String),
UnknownType(String),
TooManyInputs(String, usize),
WrongNumberOfChilds(String, usize, usize),
UnassignedInput(String, usize, String),
JITCompileError(JITCompileError),
}
Variants
UnknownError
NoSynfxDSPJit
BadTree(ASTNodeRef)
NoOutputAtIdx(String, usize)
ASTMissingOutputLabel(usize)
NoTmpVarForOutput(usize, String)
BadLiteralNumber(String)
NodeWithoutID(String)
UnknownType(String)
TooManyInputs(String, usize)
WrongNumberOfChilds(String, usize, usize)
UnassignedInput(String, usize, String)
JITCompileError(JITCompileError)
Trait Implementations
sourceimpl Clone for BlkJITCompileError
impl Clone for BlkJITCompileError
sourcefn clone(&self) -> BlkJITCompileError
fn clone(&self) -> BlkJITCompileError
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 BlkJITCompileError
impl !Send for BlkJITCompileError
impl !Sync for BlkJITCompileError
impl Unpin for BlkJITCompileError
impl !UnwindSafe for BlkJITCompileError
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