pub type Result<T> = Result<T, Error>;Expand description
Convenience type alias for Liquid compiler errors
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}Variants§
Trait Implementations§
Source§impl<T> ResultLiquidExt<T> for Result<T>
impl<T> ResultLiquidExt<T> for Result<T>
Source§fn trace<S>(self, trace: S) -> Result<T>
fn trace<S>(self, trace: S) -> Result<T>
Add a new stack frame to the
liquid_error::Error. Read moreSource§fn trace_with<F>(self, trace: F) -> Result<T>
fn trace_with<F>(self, trace: F) -> Result<T>
Add a new stack frame to the
liquid_error::Error. Read moreSource§fn context_key<S>(self, key: S) -> Key<T>
fn context_key<S>(self, key: S) -> Key<T>
Add state the current stack frame. Read more