Type Alias evil_janet::JanetCFunction

source ·
pub type JanetCFunction = Option<unsafe extern "C-unwind" fn(argc: i32, argv: *mut Janet) -> Janet>;

Aliased Type§

enum JanetCFunction {
    None,
    Some(unsafe extern "C-unwind" fn(_: i32, _: *mut Janet) -> Janet),
}

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.