pub trait IndexScanRangeBoundsTerminator {
type Arg;
const POINT: bool = false;
// Required method
fn bounds(&self) -> TermBound<&Self::Arg>;
// Provided method
fn point(&self) -> &Self::Arg { ... }
}Provided Associated Constants§
Required Associated Types§
Required Methods§
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.