pub enum Error {
ParseError {
msg: String,
line: usize,
column: usize,
},
RenderError {
msg: String,
line: usize,
column: usize,
},
SerdeError {
err: Error,
},
GenericError {
msg: String,
},
StdFormatError {
err: Error,
},
CalledTemplateError {
name: String,
err: Box<Error>,
line: usize,
column: usize,
},
CalledFormatterError {
name: String,
err: Box<Error>,
line: usize,
column: usize,
},
// some variants omitted
}
Expand description
Enum representing the potential errors that TinyTemplate can encounter.
Variants§
ParseError
RenderError
SerdeError
GenericError
StdFormatError
CalledTemplateError
CalledFormatterError
Trait Implementations§
Source§impl Error for Error
impl Error for Error
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 56 bytes
Size for each variant:
ParseError
: 40 bytesRenderError
: 40 bytesSerdeError
: 8 bytesGenericError
: 24 bytesStdFormatError
: 0 bytesCalledTemplateError
: 48 bytesCalledFormatterError
: 48 bytes__NonExhaustive
: 0 bytes