pub trait Offset { fn to_usize(&self) -> usize; fn is_null(&self) -> bool { ... } }
A common offset methods.
Converts the offset to usize.
usize
Checks that offset is null.