FilePtr32

Type Alias FilePtr32 

Source
pub type FilePtr32<T> = FilePtr<u32, T>;
Expand description

A type alias for FilePtr with 32-bit offsets.

Aliased Type§

pub struct FilePtr32<T> {
    pub ptr: u32,
    pub value: T,
}

Fields§

§ptr: u32

The raw offset to the value.

§value: T

The pointed-to value.