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 exec_legacy_content<'life0, 'async_trait>(
&'life0 self,
request: Request<MsgExecLegacyContent>,
) -> Pin<Box<dyn Future<Output = Result<Response<MsgExecLegacyContentResponse>, 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;
fn update_params<'life0, 'async_trait>(
&'life0 self,
request: Request<MsgUpdateParams>,
) -> Pin<Box<dyn Future<Output = Result<Response<MsgUpdateParamsResponse>, Status>> + Send + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn cancel_proposal<'life0, 'async_trait>(
&'life0 self,
request: Request<MsgCancelProposal>,
) -> Pin<Box<dyn Future<Output = Result<Response<MsgCancelProposalResponse>, 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.