Enum zen_expression::compiler::CompilerError  
source · pub enum CompilerError {
    UnknownUnaryOperator {
        operator: String,
    },
    UnknownBinaryOperator {
        operator: String,
    },
    ArgumentNotFound {
        builtin: String,
        index: usize,
    },
}Variants§
Trait Implementations§
source§impl Clone for CompilerError
 
impl Clone for CompilerError
source§fn clone(&self) -> CompilerError
 
fn clone(&self) -> CompilerError
Returns a copy of the value. Read more
1.0.0 · 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 CompilerError
 
impl Debug for CompilerError
source§impl Display for CompilerError
 
impl Display for CompilerError
source§impl Error for CompilerError
 
impl Error for CompilerError
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 CompilerError
 
impl PartialEq for CompilerError
impl Eq for CompilerError
impl StructuralPartialEq for CompilerError
Auto Trait Implementations§
impl Freeze for CompilerError
impl RefUnwindSafe for CompilerError
impl Send for CompilerError
impl Sync for CompilerError
impl Unpin for CompilerError
impl UnwindSafe for CompilerError
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
 
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)