Type Alias CanTransferStructuredCloneOp

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut JSContext, Handle<*mut JSObject>, *mut bool, *mut c_void) -> bool)

Some value of type T.