pub type FilePtr8<T> = FilePtr<u8, T>;
Expand description
A type alias for FilePtr
with 8-bit offsets.
Aliased Type§
struct FilePtr8<T> {
pub ptr: u8,
pub value: T,
}
Fields§
§ptr: u8
The raw offset to the value.
value: T
The pointed-to value.