pub trait GetInfo<T: Serialize> {
    fn get_info(&self, network: Network) -> T;
}
Expand description

Get JSON-able objects that describe the type.

Required methods

Get a description of this object given the network of interest.

Implementations on Foreign Types

Implementors