pub trait ScanMode:
Sealed
+ Copy
+ 'static {
const IS_INCLUSIVE: bool;
}Expand description
Sealed ZST trait for prefix scan inclusion modes.
Required Associated Constants§
Sourceconst IS_INCLUSIVE: bool
const IS_INCLUSIVE: bool
Whether the scan is inclusive of the current element.
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".