Type Alias miniblink_sys::FILE_READ

source ·
pub type FILE_READ = Option<unsafe extern "C" fn(handle: *mut c_void, buffer: *mut c_void, size: usize) -> c_int>;

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.