Type Alias proj_file_finder

Source
pub type proj_file_finder = Option<unsafe extern "C" fn(ctx: *mut PJ_CONTEXT, arg1: *const c_char, user_data: *mut c_void) -> *const c_char>;
Expand description

Callback to resolve a filename to a full path

Aliased Type§

pub enum proj_file_finder {
    None,
    Some(unsafe extern "C" fn(*mut pj_ctx, *const i8, *mut c_void) -> *const i8),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut pj_ctx, *const i8, *mut c_void) -> *const i8)

Some value of type T.