pub trait TypeData: Debug {
    type Id: TypeIdentifier<Data = Self>;
}
Expand description

A trait shared by all types within a Types.

This is the data that can be retreived by indexing with the associated TypeIdentifier.

Required Associated Types§

source

type Id: TypeIdentifier<Data = Self>

The identifier for this type data.

Implementors§