pub trait PropertyKey {
    unsafe fn get_from<'c, C: Context<'c>>(
        self,
        cx: &mut C,
        out: &mut *mut Value__,
        obj: *mut Value__
    ) -> bool; unsafe fn set_from<'c, C: Context<'c>>(
        self,
        cx: &mut C,
        out: &mut bool,
        obj: *mut Value__,
        val: *mut Value__
    ) -> bool; }
Expand description

A property key in a JavaScript object.

Required Methods

Implementations on Foreign Types

Implementors