Struct boot_core::cosmos_modules::cosmwasm::msg_client::MsgClient
pub struct MsgClient<T> { /* private fields */ }Expand description
Msg defines the wasm 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 store_code(
&mut self,
request: impl IntoRequest<MsgStoreCode>
) -> impl Future<Output = Result<Response<MsgStoreCodeResponse>, Status>>
pub async fn store_code(
&mut self,
request: impl IntoRequest<MsgStoreCode>
) -> impl Future<Output = Result<Response<MsgStoreCodeResponse>, Status>>
StoreCode to submit Wasm code to the system
pub async fn instantiate_contract(
&mut self,
request: impl IntoRequest<MsgInstantiateContract>
) -> impl Future<Output = Result<Response<MsgInstantiateContractResponse>, Status>>
pub async fn instantiate_contract(
&mut self,
request: impl IntoRequest<MsgInstantiateContract>
) -> impl Future<Output = Result<Response<MsgInstantiateContractResponse>, Status>>
Instantiate creates a new smart contract instance for the given code id.
pub async fn execute_contract(
&mut self,
request: impl IntoRequest<MsgExecuteContract>
) -> impl Future<Output = Result<Response<MsgExecuteContractResponse>, Status>>
pub async fn execute_contract(
&mut self,
request: impl IntoRequest<MsgExecuteContract>
) -> impl Future<Output = Result<Response<MsgExecuteContractResponse>, Status>>
Execute submits the given message data to a smart contract
pub async fn migrate_contract(
&mut self,
request: impl IntoRequest<MsgMigrateContract>
) -> impl Future<Output = Result<Response<MsgMigrateContractResponse>, Status>>
pub async fn migrate_contract(
&mut self,
request: impl IntoRequest<MsgMigrateContract>
) -> impl Future<Output = Result<Response<MsgMigrateContractResponse>, Status>>
Migrate runs a code upgrade/ downgrade for a smart contract
pub async fn update_admin(
&mut self,
request: impl IntoRequest<MsgUpdateAdmin>
) -> impl Future<Output = Result<Response<MsgUpdateAdminResponse>, Status>>
pub async fn update_admin(
&mut self,
request: impl IntoRequest<MsgUpdateAdmin>
) -> impl Future<Output = Result<Response<MsgUpdateAdminResponse>, Status>>
UpdateAdmin sets a new admin for a smart contract
pub async fn clear_admin(
&mut self,
request: impl IntoRequest<MsgClearAdmin>
) -> impl Future<Output = Result<Response<MsgClearAdminResponse>, Status>>
pub async fn clear_admin(
&mut self,
request: impl IntoRequest<MsgClearAdmin>
) -> impl Future<Output = Result<Response<MsgClearAdminResponse>, Status>>
ClearAdmin removes any admin stored for a smart contract
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