pub trait ClampTable: Debug {
    fn clamped(self, range: Self) -> Result<Self, PosOffTableError<Self>>;
}

Required Methods

Implementations on Foreign Types

Implementors