Type Alias binrw::FilePtr64

source ·
pub type FilePtr64<T> = FilePtr<u64, T>;
Expand description

A type alias for FilePtr with 64-bit offsets.

Aliased Type§

struct FilePtr64<T> {
    pub ptr: u64,
    pub value: T,
}

Fields§

§ptr: u64

The raw offset to the value.

§value: T

The pointed-to value.