pub trait ClampTable: Sized + Debug {
// Required method
fn clamped(self, range: Self) -> Result<Self, PosOffTableError<Self>>;
}Required Methods§
fn clamped(self, range: Self) -> Result<Self, PosOffTableError<Self>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".