FieldTypeInfo

Type Alias FieldTypeInfo 

Source
pub type FieldTypeInfo = (&'static str, &'static [TypeId]);
Expand description

Type name and its decomposition into type ids. Decomposition is defined recursively, starting from type id of the type itself, followed by decompositions of its generic parameters, respectively. For example, for Vec<Vec<u8>> it will be [TypeId::of::<Vec<Vec<u8>>>(), TypeId::of::<Vec<u8>>(), TypeId::of::<u8>()].