pub type Dart_UnregisterKernelBlobCallback = Option<unsafe extern "C" fn(kernel_blob_uri: *const c_char)>;
Expand description

Optional callback provided by the embedder that is used by the VM to unregister kernel blobs. If no callback is provided, the unregistration of kernel blobs will throw an error.

\param kernel_blob_uri URI of the kernel blob to unregister.

Aliased Type§

enum Dart_UnregisterKernelBlobCallback {
    None,
    Some(unsafe extern "C" fn(_: *const i8)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8))

Some value of type T.