pub type JSEnumerateOp = Option<unsafe extern "C" fn(cx: *mut JSContext, obj: HandleObject) -> 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),
}Variants§
None
No value.
Some(unsafe extern "C" fn(*mut JSContext, Handle<*mut JSObject>) -> bool)
Some value of type T.
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.