pub trait Call {
type Response: DeserializeOwned;
}Expand description
This object could be used to call an API.
Required Associated Types§
Sourcetype Response: DeserializeOwned
type Response: DeserializeOwned
The return type of the API on success.