Type Alias assembly_pack::pk::file::PKEntry

source ·
pub type PKEntry = CRCTreeNode<PKEntryData>;
Available on crate feature pk only.
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: CRC

The CRC value of this file

§left: i32

Binary tree node to the left

§right: i32

Binary tree node to the right

§data: PKEntryData

The data in this node