pub struct InterpolationError {
pub key: String,
pub line: usize,
pub source: Option<PathBuf>,
pub kind: InterpolationErrorKind,
}Expand description
Interpolation failures for ${VAR} style expansions.
Fields§
§key: StringThe key whose value was being expanded.
line: usizeThe 1-based line where the key was defined.
source: Option<PathBuf>The source file when known.
kind: InterpolationErrorKindThe specific interpolation failure.
Trait Implementations§
Source§impl Clone for InterpolationError
impl Clone for InterpolationError
Source§fn clone(&self) -> InterpolationError
fn clone(&self) -> InterpolationError
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 InterpolationError
impl Debug for InterpolationError
Source§impl Display for InterpolationError
impl Display for InterpolationError
impl Eq 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 Error
impl From<InterpolationError> for Error
Source§fn from(err: InterpolationError) -> Self
fn from(err: InterpolationError) -> Self
Converts to this type from the input type.
Source§impl PartialEq for InterpolationError
impl PartialEq for InterpolationError
Source§fn eq(&self, other: &InterpolationError) -> bool
fn eq(&self, other: &InterpolationError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for InterpolationError
Auto Trait Implementations§
impl Freeze for InterpolationError
impl RefUnwindSafe for InterpolationError
impl Send for InterpolationError
impl Sync for InterpolationError
impl Unpin for InterpolationError
impl UnsafeUnpin 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