pub trait StrictStruct: StrictProduct {
    const ALL_FIELDS: &'static [&'static str];

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

Required Associated Constants§

source

const ALL_FIELDS: &'static [&'static str]

Provided Methods§

Implementations on Foreign Types§

source§

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

source§

const ALL_FIELDS: &'static [&'static str] = T::ALL_FIELDS

Implementors§

source§

impl StrictStruct for Sizing

source§

const ALL_FIELDS: &'static [&'static str] = _

source§

impl StrictStruct for Variant

source§

const ALL_FIELDS: &'static [&'static str] = _