pub enum TemplerError {
TemplateRead(Error),
UnbalancedBraces,
UnbalancedForLoop,
NoSuchList(String),
FormatError {
start: usize,
end: usize,
},
}Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TemplerError
impl !RefUnwindSafe for TemplerError
impl Send for TemplerError
impl Sync for TemplerError
impl Unpin for TemplerError
impl !UnwindSafe for TemplerError
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