Type Alias binrw::file_ptr::NonZeroFilePtr128

source ·
pub type NonZeroFilePtr128<T> = FilePtr<NonZeroU128, T>;
Expand description

A type alias for FilePtr with non-zero 128-bit offsets.

Aliased Type§

struct NonZeroFilePtr128<T> {
    pub ptr: NonZero<u128>,
    pub value: T,
}

Fields§

§ptr: NonZero<u128>

The raw offset to the value.

§value: T

The pointed-to value.