pub enum EvalStackTraceItem {
Expr {
span: SpanId,
},
Call {
span: Option<SpanId>,
name: Option<String>,
},
Variable {
span: SpanId,
name: String,
},
ArrayItem {
span: Option<SpanId>,
index: usize,
},
ObjectField {
span: Option<SpanId>,
name: String,
},
Import {
span: SpanId,
},
}Variants§
Trait Implementations§
source§impl Clone for EvalStackTraceItem
impl Clone for EvalStackTraceItem
source§fn clone(&self) -> EvalStackTraceItem
fn clone(&self) -> EvalStackTraceItem
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 EvalStackTraceItem
impl Debug for EvalStackTraceItem
source§impl PartialEq for EvalStackTraceItem
impl PartialEq for EvalStackTraceItem
source§fn eq(&self, other: &EvalStackTraceItem) -> bool
fn eq(&self, other: &EvalStackTraceItem) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for EvalStackTraceItem
impl StructuralPartialEq for EvalStackTraceItem
Auto Trait Implementations§
impl Freeze for EvalStackTraceItem
impl RefUnwindSafe for EvalStackTraceItem
impl Send for EvalStackTraceItem
impl Sync for EvalStackTraceItem
impl Unpin for EvalStackTraceItem
impl UnwindSafe for EvalStackTraceItem
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)