pub trait Offset: Copy {
    fn to_usize(self) -> usize;

    fn non_null(self) -> Option<usize> { ... }
}
Expand description

Any offset type.

Required Methods

Provided Methods

Implementations on Foreign Types

Implementors