pub trait StrictTuple: StrictProduct {
    const FIELD_COUNT: u8;

    fn strict_check_fields() { ... }
    fn strict_type_info() -> TypeInfo<Self> { ... }
}

Required Associated Constants§

Provided Methods§

Implementations on Foreign Types§

source§

impl<T> StrictTuple for Box<T>where
    T: Default + StrictTuple,

source§

const FIELD_COUNT: u8 = T::FIELD_COUNT

Implementors§