pub type CanTransferStructuredCloneOp = Option<unsafe extern "C" fn(cx: *mut JSContext, obj: Handle<*mut JSObject>, sameProcessScopeRequired: *mut bool, closure: *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§
pub enum CanTransferStructuredCloneOp {
None,
Some(unsafe extern "C" fn(*mut JSContext, Handle<*mut JSObject>, *mut bool, *mut c_void) -> bool),
}