Type Alias mrb_iv_foreach_func

Source
pub type mrb_iv_foreach_func = Option<unsafe extern "C-unwind" fn(arg1: *mut mrb_state, arg2: mrb_sym, arg3: mrb_value, arg4: *mut c_void) -> c_int>;

Aliased Type§

enum mrb_iv_foreach_func {
    None,
    Some(unsafe extern "C-unwind" fn(*mut mrb_state, u32, mrb_value, *mut c_void) -> i32),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C-unwind" fn(*mut mrb_state, u32, mrb_value, *mut c_void) -> i32)

Some value of type T.