pub type Dart_FileModifiedCallback = Option<unsafe extern "C" fn(url: *const c_char, since: i64) -> bool>;
Expand description

A callback which determines whether the file at some url has been modified since some time. If the file cannot be found, true should be returned.

Aliased Type§

enum Dart_FileModifiedCallback {
    None,
    Some(unsafe extern "C" fn(_: *const i8, _: i64) -> bool),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(_: *const i8, _: i64) -> bool)

Some value of type T.