pub trait FromMetadata {
    // Required method
    fn from_metadata(client: HttpClient, metadata: Metadata) -> Self;
}

Required Methods§

source

fn from_metadata(client: HttpClient, metadata: Metadata) -> Self

Creates an item given the http configuration and item metadata. No validation is performed that the metadata is correct.

Implementors§