ZL_FunctionGraphFn

Type Alias ZL_FunctionGraphFn 

Source
pub type ZL_FunctionGraphFn = Option<unsafe extern "C" fn(graph: *mut ZL_Graph, inputs: *mut *mut ZL_Edge, nbInputs: usize) -> ZL_Report>;
Expand description

The function signature for function graphs.

@param graph The graph object containing the graph context @param inputs The inputs passed into the function graph to compress @param nbInputs The number of inputs in @p inputs

Aliased Type§

pub enum ZL_FunctionGraphFn {
    None,
    Some(unsafe extern "C" fn(*mut ZL_Graph_s, *mut *mut ZL_Edge_s, usize) -> ZL_Result_size_t_u),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(unsafe extern "C" fn(*mut ZL_Graph_s, *mut *mut ZL_Edge_s, usize) -> ZL_Result_size_t_u)

Some value of type T.