pub trait Bindings<T>: Debug {
    // Required method
    fn get(&self, name: &BindingsName) -> Option<&T>;
}

Required Methods§

source

fn get(&self, name: &BindingsName) -> Option<&T>

Implementations on Foreign Types§

source§

impl Bindings<Value> for Tuple

source§

fn get(&self, name: &BindingsName) -> Option<&Value>

Implementors§

source§

impl<T> Bindings<T> for MapBindings<T>where T: Debug,