pub enum RuntimeErrorKind {
VariableNotFound {
name: String,
},
VariableIsDataframe {
name: String,
},
VariableIsImmutable {
name: String,
},
BreakOutsideLoop,
ContinueOutsideLoop,
MaxIterationsExceeded {
limit: usize,
},
UndefinedFunction {
name: String,
},
FieldNotFound {
variable: String,
field: String,
available: Vec<String>,
},
AppendTargetNotFrame {
name: String,
},
}Variants§
VariableNotFound
VariableIsDataframe
VariableIsImmutable
BreakOutsideLoop
ContinueOutsideLoop
MaxIterationsExceeded
UndefinedFunction
FieldNotFound
AppendTargetNotFrame
Trait Implementations§
Source§impl Clone for RuntimeErrorKind
impl Clone for RuntimeErrorKind
Source§fn clone(&self) -> RuntimeErrorKind
fn clone(&self) -> RuntimeErrorKind
Returns a duplicate 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 RuntimeErrorKind
impl Debug for RuntimeErrorKind
Source§impl PartialEq for RuntimeErrorKind
impl PartialEq for RuntimeErrorKind
impl StructuralPartialEq for RuntimeErrorKind
Auto Trait Implementations§
impl Freeze for RuntimeErrorKind
impl RefUnwindSafe for RuntimeErrorKind
impl Send for RuntimeErrorKind
impl Sync for RuntimeErrorKind
impl Unpin for RuntimeErrorKind
impl UnsafeUnpin for RuntimeErrorKind
impl UnwindSafe for RuntimeErrorKind
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