Type Alias binrw::FilePtr32

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

A type alias for FilePtr with 32-bit offsets.

Aliased Type§

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

Fields§

§ptr: u32

The raw offset to the value.

§value: T

The pointed-to value.