Trait neon::object::PropertyKey[][src]

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

A property key in a JavaScript object.

Required methods

Implementations on Foreign Types

Implementors