pub type Dart_GetVMServiceAssetsArchive = Option<unsafe extern "C" fn() -> Dart_Handle>;
Expand description

Callback provided by the embedder that is used by the vmservice isolate to request the asset archive. The asset archive must be an uncompressed tar archive that is stored in a Uint8List.

If the embedder has no vmservice isolate assets, the callback can be NULL.

\return The embedder must return a handle to a Uint8List containing an uncompressed tar archive or null.

Aliased Type§

enum Dart_GetVMServiceAssetsArchive {
    None,
    Some(unsafe extern "C" fn() -> *mut _Dart_Handle),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn() -> *mut _Dart_Handle)

Some value of type T.