Type Alias php_stream_notification_func

Source
pub type php_stream_notification_func = Option<unsafe extern "C" fn(context: *mut php_stream_context, notifycode: c_int, severity: c_int, xmsg: *mut c_char, xcode: c_int, bytes_sofar: usize, bytes_max: usize, ptr: *mut c_void)>;

Aliased Type§

enum php_stream_notification_func {
    None,
    Some(unsafe extern "C" fn(*mut _php_stream_context, i32, i32, *mut i8, i32, usize, usize, *mut c_void)),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut _php_stream_context, i32, i32, *mut i8, i32, usize, usize, *mut c_void))

Some value of type T.