pub type PKEntry = CRCTreeNode<PKEntryData>;Expand description
An entry for a single file
Aliased Type§
struct PKEntry {
pub crc: CRC,
pub left: i32,
pub right: i32,
pub data: PKEntryData,
}Fields§
§crc: CRCThe [CRC][crate::crc] value of this file
left: i32Binary tree node to the left
right: i32Binary tree node to the right
data: PKEntryDataThe data in this node