pub trait JsonRpcProvider:
Debug
+ Send
+ Sync {
type Error: Into<ProviderError>;
// Required method
fn fetch<'life0, 'life1, 'async_trait, T, R>(
&'life0 self,
method: &'life1 str,
params: T,
) -> Pin<Box<dyn Future<Output = Result<R, Self::Error>> + Send + 'async_trait>>
where T: Debug + Serialize + Send + Sync + 'async_trait,
R: DeserializeOwned + Send + 'async_trait,
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}
Expand description
Trait which must be implemented by data transports to be used with the Neo JSON-RPC provider.
Required Associated Types§
Sourcetype Error: Into<ProviderError>
type Error: Into<ProviderError>
A JSON-RPC Error
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.