pub trait Offset: Default + Copy + Eq + Ord + Add<usize, Output = Self> + Sub<usize, Output = Self> + AddAssign<usize> + Debug { }
Expand description

A byte offset in the source.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Offset for usize

Implementors§