pub trait FormatTypeInfo<T: ?Sized>: IntrospectableFormat {
    // Required method
    fn type_info() -> Self::TypeInfo;
}
Expand description

Trait for formats to provide runtime type information about a message body.

Required Methods§

source

fn type_info() -> Self::TypeInfo

Get type information about a type.

Object Safety§

This trait is not object safe.

Implementors§