pub type Dart_FfiNativeResolver = Option<unsafe extern "C" fn(name: *const c_char, args_n: usize) -> *mut c_void>;
Expand description

FFI Native C function pointer resolver callback.

See Dart_SetFfiNativeResolver.

Aliased Type§

enum Dart_FfiNativeResolver {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: usize) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8, _: usize) -> *mut c_void)

Some value of type T.