Skip to main content

NonZeroFilePtr32

Type Alias NonZeroFilePtr32 

Source
pub type NonZeroFilePtr32<T> = FilePtr<NonZeroU32, T>;
Expand description

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

Aliased Type§

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

Fields§

§ptr: NonZero<u32>

The raw offset to the value.

§value: T

The pointed-to value.