pub type nodeT = nodeST;Aliased Type§
#[repr(C)]pub struct nodeT {
pub row: i32,
pub col: i32,
pub next: *mut nodeST,
pub prev: *mut nodeST,
pub pred: *mut nodeST,
pub level: u32,
pub group: i32,
pub incost: i32,
pub outcost: i32,
}Fields§
§row: i32§col: i32§next: *mut nodeST§prev: *mut nodeST§pred: *mut nodeST§level: u32§group: i32§incost: i32§outcost: i32