Type Alias binrw::file_ptr::NonZeroFilePtr32
source · pub type NonZeroFilePtr32<T> = FilePtr<NonZeroU32, T>;
Expand description
A type alias for FilePtr
with non-zero 32-bit offsets.
Aliased Type§
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.