Struct stack_graphs::c::sg_path_edge_list_cell [−][src]
#[repr(C)]pub struct sg_path_edge_list_cell {
pub head: sg_path_edge,
pub tail: sg_path_edge_list_cell_handle,
pub reversed: sg_path_edge_list_cell_handle,
}Expand description
An element of a path edge list.
Fields
head: sg_path_edgeThe path edge at this position in the path edge list.
tail: sg_path_edge_list_cell_handleThe handle of the next element in the path edge list, or SG_LIST_EMPTY_HANDLE if this is the last element.
reversed: sg_path_edge_list_cell_handleThe handle of the reversal of this list.