pub trait StrictTuple: StrictProduct {
const FIELD_COUNT: u8;
// Provided methods
fn strict_check_fields() { ... }
fn strict_type_info() -> TypeInfo<Self> { ... }
}
Required Associated Constants§
const FIELD_COUNT: u8
Provided Methods§
fn strict_check_fields()
fn strict_type_info() -> TypeInfo<Self>
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.