[][src]Trait qjs::HasProperty

pub trait HasProperty {
    fn has_property(
        self,
        ctxt: &ContextRef,
        this: &Value
    ) -> Result<bool, Error>; }

Check if a property on an object.

Required methods

fn has_property(self, ctxt: &ContextRef, this: &Value) -> Result<bool, Error>

Check if a property on an object.

Loading content...

Implementors

impl<'a, T> HasProperty for T where
    T: NewAtom
[src]

Loading content...