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