pub trait ConstrainedLengthProcessingInfo: Sealed {
const MIN: u32;
const MIN_CONSERVATIVE: u32;
const MAX: u32 = 4_224_281_216u32;
}Expand description
Denotes bucket count-specific length constraints.
Required Associated Constants§
Sourceconst MIN_CONSERVATIVE: u32
const MIN_CONSERVATIVE: u32
The minimum data length (on the conservative mode).
Provided Associated Constants§
Sourceconst MAX: u32 = 4_224_281_216u32
const MAX: u32 = 4_224_281_216u32
The maximum data length (inclusive).
Note that this value is the same across all length processing information instantiations.
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.