Type Alias binrw::file_ptr::NonZeroFilePtr64
source · pub type NonZeroFilePtr64<T> = FilePtr<NonZeroU64, T>;
Expand description
A type alias for FilePtr
with non-zero 64-bit offsets.
Aliased Type§
struct NonZeroFilePtr64<T> {
pub ptr: NonZero<u64>,
pub value: T,
}
Fields§
§ptr: NonZero<u64>
The raw offset to the value.
value: T
The pointed-to value.