Trait btc_relay_rpc::BtcRelayApiServer
source · pub trait BtcRelayApiServer<BlockHash, H256Le>: Sized + Send + Sync + 'static {
// Required method
fn verify_block_header_inclusion(
&self,
block_hash: H256Le,
at: Option<BlockHash>
) -> RpcResult<Result<(), DispatchError>>;
// Provided method
fn into_rpc(self) -> RpcModule<Self>
where BlockHash: Send + Sync + 'static + DeserializeOwned,
H256Le: Send + Sync + 'static + DeserializeOwned { ... }
}
Expand description
Server trait implementation for the BtcRelayApi
RPC API.
Required Methods§
fn verify_block_header_inclusion( &self, block_hash: H256Le, at: Option<BlockHash> ) -> RpcResult<Result<(), DispatchError>>
Provided Methods§
sourcefn into_rpc(self) -> RpcModule<Self>where
BlockHash: Send + Sync + 'static + DeserializeOwned,
H256Le: Send + Sync + 'static + DeserializeOwned,
fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, H256Le: Send + Sync + 'static + DeserializeOwned,
Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule
.