pub type JSEnumerateOp = Option<unsafe extern "C" fn(*mut JSContext, Handle<*mut JSObject>) -> bool>;Expand description
The old-style JSClass.enumerate op should define all lazy properties not yet reflected in obj.
Aliased Type§
pub enum JSEnumerateOp {
    None,
    Some(unsafe extern "C" fn(*mut JSContext, Handle<*mut JSObject>) -> bool),
}