logo
pub trait Extractible<'de>: Deserialize<'de> {
    fn metadata() -> &'de Metadata;
}
Expand description

If a type implements this trait, it will give a metadata, this will help request to extracts data to this type.

Required Methods

Metadata for Extractible type.

Implementors