pub trait Deserializable: 'static {
    fn name() -> &'static str;
}
Expand description

A trait implemented by traits which are deserializable.

Required methods

Returns a name for objects implementing the trait suitable for display in error messages.

For example, the Deserializable implementation for the Append trait returns “appender”.

Implementors