pub enum InterpolationError {
UndefinedVariable(String),
InvalidSyntax(String),
RecursiveInterpolation,
}Expand description
Variable interpolation errors
Variants§
Trait Implementations§
Source§impl Debug for InterpolationError
impl Debug for InterpolationError
Source§impl Display for InterpolationError
impl Display for InterpolationError
Source§impl Error for InterpolationError
impl Error for InterpolationError
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 From<InterpolationError> for RtaskError
impl From<InterpolationError> for RtaskError
Source§fn from(source: InterpolationError) -> Self
fn from(source: InterpolationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for InterpolationError
impl RefUnwindSafe for InterpolationError
impl Send for InterpolationError
impl Sync for InterpolationError
impl Unpin for InterpolationError
impl UnwindSafe for InterpolationError
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