[][src]Trait qjs::Bindable

pub trait Bindable<'a> {
    type Output: Unbindable;
    fn bind_to(self, ctxt: &ContextRef) -> Self::Output;
}

Associated Types

Loading content...

Required methods

fn bind_to(self, ctxt: &ContextRef) -> Self::Output

Loading content...

Implementors

impl<'a, T> Bindable<'a> for T where
    T: NewValue
[src]

type Output = Value

Loading content...