pub trait StrictTuple: StrictProduct {
    const FIELD_COUNT: u8;

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

Required Associated Constants§

Provided Methods§

Implementations on Foreign Types§

source§

impl<A: StrictType + Default, B: StrictType + Default> StrictTuple for (A, B)

source§

const FIELD_COUNT: u8 = 2u8

source§

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

source§

const FIELD_COUNT: u8 = T::FIELD_COUNT

source§

impl<A: StrictType + Default, B: StrictType + Default, C: StrictType + Default> StrictTuple for (A, B, C)

source§

const FIELD_COUNT: u8 = 3u8

Implementors§