pub type CanTransferStructuredCloneOp = Option<unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool, _: *mut c_void) -> bool>;
Expand description
Called when the transferring objects are checked. If this function returns false, the serialization ends throwing a DataCloneError exception.
Aliased Type§
enum CanTransferStructuredCloneOp {
None,
Some(unsafe extern "C" fn(_: *mut JSContext, _: Handle<*mut JSObject>, _: *mut bool, _: *mut c_void) -> bool),
}