pub type Dart_NativeFunction = Option<unsafe extern "C" fn(arguments: Dart_NativeArguments)>;
Expand description
A native function.
Aliased Type§
pub enum Dart_NativeFunction {
None,
Some(unsafe extern "C" fn(*mut _Dart_NativeArguments)),
}
Variants§
None
No value.
Some(unsafe extern "C" fn(*mut _Dart_NativeArguments))
Some value of type T
.