Trait viz_core::types::ParamsContextExt[][src]

pub trait ParamsContextExt {
    fn params<T>(&self) -> Result<T, ParamsError>
    where
        T: DeserializeOwned
;
fn param<T>(&self, name: &str) -> Result<T, ParamsError>
    where
        T: FromStr,
        T::Err: Display
; }

Required methods

fn params<T>(&self) -> Result<T, ParamsError> where
    T: DeserializeOwned
[src]

fn param<T>(&self, name: &str) -> Result<T, ParamsError> where
    T: FromStr,
    T::Err: Display
[src]

Loading content...

Implementors

impl ContextExt for Context[src]

Loading content...