pub enum DecodeStringError {
CouldNotResolveVariable {
variable_name: String,
},
CollectBlocksFromTemplateError(CollectBlocksFromTemplateError),
}
Variants§
CouldNotResolveVariable
CollectBlocksFromTemplateError(CollectBlocksFromTemplateError)
Trait Implementations§
Source§impl Debug for DecodeStringError
impl Debug for DecodeStringError
Source§impl Display for DecodeStringError
impl Display for DecodeStringError
Source§impl Error for DecodeStringError
impl Error for DecodeStringError
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<CollectBlocksFromTemplateError> for DecodeStringError
impl From<CollectBlocksFromTemplateError> for DecodeStringError
Source§fn from(source: CollectBlocksFromTemplateError) -> Self
fn from(source: CollectBlocksFromTemplateError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecodeStringError
impl RefUnwindSafe for DecodeStringError
impl Send for DecodeStringError
impl Sync for DecodeStringError
impl Unpin for DecodeStringError
impl UnwindSafe for DecodeStringError
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