pub trait Pos {
// Required methods
fn from_usize(n: usize) -> Self;
fn to_usize(&self) -> usize;
fn from_u32(n: u32) -> Self;
fn to_u32(&self) -> u32;
}Expand description
Offsets (i.e. positions), in some units (e.g. bytes or characters), with conversions between unsigned integers.