[][src]Trait qjs::DeleteProperty

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

Delete a property on an object.

Required methods

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

Delete a property on an object.

It returns a bool indicating whether or not the property was successfully deleted.

Loading content...

Implementors

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

Loading content...