Trait issue_rpc::IssueApiServer
source · pub trait IssueApiServer<BlockHash, AccountId, H256, IssueRequest>: Sized + Send + Sync + 'static {
// Required methods
fn get_issue_requests(
&self,
account_id: AccountId,
at: Option<BlockHash>
) -> RpcResult<Vec<H256>>;
fn get_vault_issue_requests(
&self,
vault_id: AccountId,
at: Option<BlockHash>
) -> RpcResult<Vec<H256>>;
// Provided method
fn into_rpc(self) -> RpcModule<Self>
where BlockHash: Send + Sync + 'static + DeserializeOwned,
AccountId: Send + Sync + 'static + DeserializeOwned,
H256: Send + Sync + 'static + Serialize,
IssueRequest: Send + Sync + 'static { ... }
}
Expand description
Server trait implementation for the IssueApi
RPC API.
Required Methods§
fn get_issue_requests( &self, account_id: AccountId, at: Option<BlockHash> ) -> RpcResult<Vec<H256>>
fn get_vault_issue_requests( &self, vault_id: AccountId, at: Option<BlockHash> ) -> RpcResult<Vec<H256>>
Provided Methods§
sourcefn into_rpc(self) -> RpcModule<Self>where
BlockHash: Send + Sync + 'static + DeserializeOwned,
AccountId: Send + Sync + 'static + DeserializeOwned,
H256: Send + Sync + 'static + Serialize,
IssueRequest: Send + Sync + 'static,
fn into_rpc(self) -> RpcModule<Self>where BlockHash: Send + Sync + 'static + DeserializeOwned, AccountId: Send + Sync + 'static + DeserializeOwned, H256: Send + Sync + 'static + Serialize, IssueRequest: Send + Sync + 'static,
Collects all the methods and subscriptions defined in the trait and adds them into a single RpcModule
.