pub struct TransformationError {
pub cause: String,
pub position: Span,
pub transformation_name: String,
pub tree: Element,
}Expand description
Error structure for syntax tree transformations.
Fields§
§cause: String§position: Span§transformation_name: String§tree: ElementTrait Implementations§
Source§impl Debug for TransformationError
impl Debug for TransformationError
Source§impl<'de> Deserialize<'de> for TransformationError
impl<'de> Deserialize<'de> for TransformationError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for TransformationError
impl Display for TransformationError
Source§impl Error for TransformationError
impl Error for TransformationError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Source§impl PartialEq for TransformationError
impl PartialEq for TransformationError
Source§impl Serialize for TransformationError
impl Serialize for TransformationError
impl StructuralPartialEq for TransformationError
Auto Trait Implementations§
impl Freeze for TransformationError
impl RefUnwindSafe for TransformationError
impl Send for TransformationError
impl Sync for TransformationError
impl Unpin for TransformationError
impl UnwindSafe for TransformationError
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