pub struct TemplateError { /* private fields */ }
Expand description
Error on parsing template.
Implementations§
Source§impl TemplateError
impl TemplateError
pub fn of(e: TemplateErrorReason) -> TemplateError
pub fn at( self, template_str: &str, line_no: usize, column_no: usize, ) -> TemplateError
pub fn in_template(self, name: String) -> TemplateError
Sourcepub fn reason(&self) -> &TemplateErrorReason
pub fn reason(&self) -> &TemplateErrorReason
Get underlying reason for the error
Trait Implementations§
Source§impl Debug for TemplateError
impl Debug for TemplateError
Source§impl Display for TemplateError
impl Display for TemplateError
Source§impl Error for TemplateError
impl Error for TemplateError
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<Error> for TemplateError
impl From<Error> for TemplateError
Source§fn from(e: WalkdirError) -> TemplateError
fn from(e: WalkdirError) -> TemplateError
Converts to this type from the input type.
Source§impl From<TemplateError> for RenderError
impl From<TemplateError> for RenderError
Source§fn from(e: TemplateError) -> Self
fn from(e: TemplateError) -> Self
Converts to this type from the input type.
Source§impl From<TemplateError> for RenderErrorReason
impl From<TemplateError> for RenderErrorReason
Source§fn from(source: TemplateError) -> Self
fn from(source: TemplateError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TemplateError
impl !RefUnwindSafe for TemplateError
impl Send for TemplateError
impl Sync for TemplateError
impl Unpin for TemplateError
impl !UnwindSafe for TemplateError
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