Type Alias binrw::FilePtr16

source ·
pub type FilePtr16<T> = FilePtr<u16, T>;
Expand description

A type alias for FilePtr with 16-bit offsets.

Aliased Type§

struct FilePtr16<T> {
    pub ptr: u16,
    pub value: T,
}

Fields§

§ptr: u16

The raw offset to the value.

§value: T

The pointed-to value.