Type Alias binrw::FilePtr128
source · pub type FilePtr128<T> = FilePtr<u128, T>;
Expand description
A type alias for FilePtr
with 128-bit offsets.
Aliased Type§
struct FilePtr128<T> {
pub ptr: u128,
pub value: T,
}
Fields§
§ptr: u128
The raw offset to the value.
value: T
The pointed-to value.