Type Definition liquid_core::error::Result

source ·
pub type Result<T, E = Error> = Result<T, E>;
Expand description

Convenience type alias for Liquid compiler errors

Trait Implementations§

source§

impl<T> ResultLiquidExt<T> for Result<T>

source§

fn trace<S>(self, trace: S) -> Result<T>where S: Into<KString>,

Add a new stack frame to the crate::error::Error. Read more
source§

fn trace_with<F>(self, trace: F) -> Result<T>where F: FnOnce() -> KString,

Add a new stack frame to the crate::error::Error. Read more
source§

fn context_key<S>(self, key: S) -> Key<T>where S: Into<KString>,

Add state the current stack frame. Read more
source§

fn context_key_with<F>(self, key: F) -> FnKey<T, F>where F: FnOnce() -> KString,

Add state the current stack frame. Read more