pub enum TransformIrPrintErrorV0 {
MissingNodeOrigin {
node_index: usize,
},
InvalidOriginalSpan {
node_index: usize,
source_span_start: usize,
source_span_end: usize,
source_byte_len: usize,
},
MissingSynthesizedText {
node_index: usize,
},
CannotMaterializeParseErrorSpans {
parser_error_count: usize,
},
MissingRenderedSpan {
node_index: usize,
},
UnprojectableDirtyChild {
node_index: usize,
child_index: usize,
},
}Variants§
MissingNodeOrigin
InvalidOriginalSpan
MissingSynthesizedText
CannotMaterializeParseErrorSpans
MissingRenderedSpan
UnprojectableDirtyChild
Trait Implementations§
Source§impl Clone for TransformIrPrintErrorV0
impl Clone for TransformIrPrintErrorV0
Source§fn clone(&self) -> TransformIrPrintErrorV0
fn clone(&self) -> TransformIrPrintErrorV0
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TransformIrPrintErrorV0
impl Debug for TransformIrPrintErrorV0
impl Eq for TransformIrPrintErrorV0
Source§impl PartialEq for TransformIrPrintErrorV0
impl PartialEq for TransformIrPrintErrorV0
Source§impl Serialize for TransformIrPrintErrorV0
impl Serialize for TransformIrPrintErrorV0
impl StructuralPartialEq for TransformIrPrintErrorV0
Auto Trait Implementations§
impl Freeze for TransformIrPrintErrorV0
impl RefUnwindSafe for TransformIrPrintErrorV0
impl Send for TransformIrPrintErrorV0
impl Sync for TransformIrPrintErrorV0
impl Unpin for TransformIrPrintErrorV0
impl UnsafeUnpin for TransformIrPrintErrorV0
impl UnwindSafe for TransformIrPrintErrorV0
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.