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