pub enum CodegenrError {
Loading(LoaderError),
Resolving(ResolverError),
Saving(SaverError),
Helpers(HelpersError),
Customizing(CustomError),
Rendering(RenderError),
Processing(ProcessorError),
RenderTemp(RenderError),
}
Variants§
Loading(LoaderError)
Resolving(ResolverError)
Saving(SaverError)
Helpers(HelpersError)
Customizing(CustomError)
Rendering(RenderError)
Processing(ProcessorError)
RenderTemp(RenderError)
Trait Implementations§
Source§impl Debug for CodegenrError
impl Debug for CodegenrError
Source§impl Display for CodegenrError
impl Display for CodegenrError
Source§impl Error for CodegenrError
impl Error for CodegenrError
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<CustomError> for CodegenrError
impl From<CustomError> for CodegenrError
Source§fn from(source: CustomError) -> Self
fn from(source: CustomError) -> Self
Converts to this type from the input type.
Source§impl From<HelpersError> for CodegenrError
impl From<HelpersError> for CodegenrError
Source§fn from(source: HelpersError) -> Self
fn from(source: HelpersError) -> Self
Converts to this type from the input type.
Source§impl From<LoaderError> for CodegenrError
impl From<LoaderError> for CodegenrError
Source§fn from(source: LoaderError) -> Self
fn from(source: LoaderError) -> Self
Converts to this type from the input type.
Source§impl From<ProcessorError> for CodegenrError
impl From<ProcessorError> for CodegenrError
Source§fn from(source: ProcessorError) -> Self
fn from(source: ProcessorError) -> Self
Converts to this type from the input type.
Source§impl From<RenderError> for CodegenrError
impl From<RenderError> for CodegenrError
Source§fn from(source: RenderError) -> Self
fn from(source: RenderError) -> Self
Converts to this type from the input type.
Source§impl From<RenderError> for CodegenrError
impl From<RenderError> for CodegenrError
Source§fn from(source: RenderError) -> Self
fn from(source: RenderError) -> Self
Converts to this type from the input type.
Source§impl From<ResolverError> for CodegenrError
impl From<ResolverError> for CodegenrError
Source§fn from(source: ResolverError) -> Self
fn from(source: ResolverError) -> Self
Converts to this type from the input type.
Source§impl From<SaverError> for CodegenrError
impl From<SaverError> for CodegenrError
Source§fn from(source: SaverError) -> Self
fn from(source: SaverError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for CodegenrError
impl !RefUnwindSafe for CodegenrError
impl Send for CodegenrError
impl Sync for CodegenrError
impl Unpin for CodegenrError
impl !UnwindSafe for CodegenrError
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