Type Alias OrthancPluginFreeMove

Source
pub type OrthancPluginFreeMove = Option<unsafe extern "C" fn(moveDriver: *mut c_void)>;
Expand description

@brief Callback to free one C-Move driver.

Signature of a callback function that releases the resources allocated by the given C-Move driver. This driver is the return value of a previous call to the OrthancPluginMoveCallback() callback.

@param moveDriver The C-Move driver of interest. @ingroup DicomCallbacks

Aliased Type§

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

Variants§

§1.0.0

None

No value.

§1.0.0

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

Some value of type T.