Trait Msg

Source
pub trait Msg:
    Send
    + Sync
    + 'static {
    // Required methods
    fn submit_proposal<'life0, 'async_trait>(
        &'life0 self,
        request: Request<MsgSubmitProposal>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<MsgSubmitProposalResponse>, Status>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
    fn vote<'life0, 'async_trait>(
        &'life0 self,
        request: Request<MsgVote>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<MsgVoteResponse>, Status>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
    fn vote_weighted<'life0, 'async_trait>(
        &'life0 self,
        request: Request<MsgVoteWeighted>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<MsgVoteWeightedResponse>, Status>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
    fn deposit<'life0, 'async_trait>(
        &'life0 self,
        request: Request<MsgDeposit>,
    ) -> Pin<Box<dyn Future<Output = Result<Response<MsgDepositResponse>, Status>> + Send + 'async_trait>>
       where 'life0: 'async_trait,
             Self: 'async_trait;
}
Expand description

Generated trait containing gRPC methods that should be implemented for use with MsgServer.

Required Methods§

Source

fn submit_proposal<'life0, 'async_trait>( &'life0 self, request: Request<MsgSubmitProposal>, ) -> Pin<Box<dyn Future<Output = Result<Response<MsgSubmitProposalResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Source

fn vote<'life0, 'async_trait>( &'life0 self, request: Request<MsgVote>, ) -> Pin<Box<dyn Future<Output = Result<Response<MsgVoteResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Source

fn vote_weighted<'life0, 'async_trait>( &'life0 self, request: Request<MsgVoteWeighted>, ) -> Pin<Box<dyn Future<Output = Result<Response<MsgVoteWeightedResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Source

fn deposit<'life0, 'async_trait>( &'life0 self, request: Request<MsgDeposit>, ) -> Pin<Box<dyn Future<Output = Result<Response<MsgDepositResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait, Self: 'async_trait,

Implementors§