Type Alias GBoxedCopyFunc

Source
pub type GBoxedCopyFunc = Option<unsafe extern "C" fn(boxed: gpointer) -> gpointer>;
Expand description

GBoxedCopyFunc: @boxed: (not nullable): The boxed structure to be copied.

This function is provided by the user and should produce a copy of the passed in boxed structure.

Returns: (not nullable): The newly created copy of the boxed structure.

Aliased Type§

pub enum GBoxedCopyFunc {
    None,
    Some(unsafe extern "C" fn(*mut c_void) -> *mut c_void),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut c_void) -> *mut c_void)

Some value of type T.