pub enum TemplateError {
Io(Error),
StackOverflow,
UnclosedSection(String),
UnopenedSection(String),
UnclosedTag,
PartialsDisabled,
IllegalPartial(String),
NotFound(String),
}Expand description
Error type used that can be emitted during template parsing.
Variants§
Io(Error)
There was an error with the IO (only happens when parsing a file)
StackOverflow
Stack overflow when parsing nested sections
UnclosedSection(String)
Parser was expecting a tag closing a section {{/foo}},
but never found it or found a different one.
UnopenedSection(String)
Similar to above, but happens if {{/foo}} happens while
no section was open
UnclosedTag
Parser was expecting to find the closing braces of a tag }}, but never found it.
PartialsDisabled
Partials are not allowed in the given context (e.g. parsing a template from string)
IllegalPartial(String)
Attempted to load a partial outside of the templates folder
NotFound(String)
The template file with the given name was not found
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<T> From<CapacityError<T>> for TemplateError
impl<T> From<CapacityError<T>> for TemplateError
Source§fn from(_: CapacityError<T>) -> Self
fn from(_: CapacityError<T>) -> 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