Struct boot_core::cosmos_modules::gov::msg_client::MsgClient
pub struct MsgClient<T> { /* private fields */ }Expand description
Msg defines the bank Msg service.
Implementations
impl<T> MsgClient<T>where
T: GrpcService<UnsyncBoxBody<Bytes, Status>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: 'static + Body<Data = Bytes> + Send,
<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
impl<T> MsgClient<T>where
T: GrpcService<UnsyncBoxBody<Bytes, Status>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>>,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: 'static + Body<Data = Bytes> + Send,
<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody as Body>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send,
pub fn new(inner: T) -> MsgClient<T>
pub fn with_origin(inner: T, origin: Uri) -> MsgClient<T>
pub fn with_interceptor<F>(
inner: T,
interceptor: F
) -> MsgClient<InterceptedService<T, F>>where
F: Interceptor,
<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody: Default,
T: Service<Request<UnsyncBoxBody<Bytes, Status>>, Response = Response<<T as GrpcService<UnsyncBoxBody<Bytes, Status>>>::ResponseBody>>,
<T as Service<Request<UnsyncBoxBody<Bytes, Status>>>>::Error: Into<Box<dyn Error + Sync + Send + 'static, Global>> + Send + Sync,
pub fn send_compressed(self, encoding: CompressionEncoding) -> MsgClient<T>
pub fn send_compressed(self, encoding: CompressionEncoding) -> MsgClient<T>
Compress requests with the given encoding.
This requires the server to support it otherwise it might respond with an error.
pub fn accept_compressed(self, encoding: CompressionEncoding) -> MsgClient<T>
pub fn accept_compressed(self, encoding: CompressionEncoding) -> MsgClient<T>
Enable decompressing responses.
pub async fn submit_proposal(
&mut self,
request: impl IntoRequest<MsgSubmitProposal>
) -> impl Future<Output = Result<Response<MsgSubmitProposalResponse>, Status>>
pub async fn submit_proposal(
&mut self,
request: impl IntoRequest<MsgSubmitProposal>
) -> impl Future<Output = Result<Response<MsgSubmitProposalResponse>, Status>>
SubmitProposal defines a method to create new proposal given a content.
pub async fn vote(
&mut self,
request: impl IntoRequest<MsgVote>
) -> impl Future<Output = Result<Response<MsgVoteResponse>, Status>>
pub async fn vote(
&mut self,
request: impl IntoRequest<MsgVote>
) -> impl Future<Output = Result<Response<MsgVoteResponse>, Status>>
Vote defines a method to add a vote on a specific proposal.
pub async fn vote_weighted(
&mut self,
request: impl IntoRequest<MsgVoteWeighted>
) -> impl Future<Output = Result<Response<MsgVoteWeightedResponse>, Status>>
pub async fn vote_weighted(
&mut self,
request: impl IntoRequest<MsgVoteWeighted>
) -> impl Future<Output = Result<Response<MsgVoteWeightedResponse>, Status>>
VoteWeighted defines a method to add a weighted vote on a specific proposal.
Since: cosmos-sdk 0.43
pub async fn deposit(
&mut self,
request: impl IntoRequest<MsgDeposit>
) -> impl Future<Output = Result<Response<MsgDepositResponse>, Status>>
pub async fn deposit(
&mut self,
request: impl IntoRequest<MsgDeposit>
) -> impl Future<Output = Result<Response<MsgDepositResponse>, Status>>
Deposit defines a method to add deposit on a specific proposal.
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for MsgClient<T>where
T: RefUnwindSafe,
impl<T> Send for MsgClient<T>where
T: Send,
impl<T> Sync for MsgClient<T>where
T: Sync,
impl<T> Unpin for MsgClient<T>where
T: Unpin,
impl<T> UnwindSafe for MsgClient<T>where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request