//! AFS B-tree Constants pub const node_type_leaf: i8 = -1; pub const node_type_index: i8 = 0; pub const node_type_header: i8 = 1; pub const node_type_map: i8 = 2; pub const header_node_number: u32 = 0;