Struct abstract_app::traits::Apps
source · pub struct Apps<'a, T>where
T: AppInterface,{ /* private fields */ }Expand description
API for accessing Abstract Apps installed on the account.
§Example
use abstract_sdk::prelude::*;
let apps: Apps<MockModule> = module.apps(deps.as_ref());Implementations§
source§impl<'a, T> Apps<'a, T>where
T: AppInterface,
impl<'a, T> Apps<'a, T>where
T: AppInterface,
sourcepub fn execute<M>(
&self,
app_id: &str,
message: impl Into<ExecuteMsg<BaseExecuteMsg, M>>
) -> Result<CosmosMsg, AbstractSdkError>where
M: Serialize,
pub fn execute<M>(
&self,
app_id: &str,
message: impl Into<ExecuteMsg<BaseExecuteMsg, M>>
) -> Result<CosmosMsg, AbstractSdkError>where
M: Serialize,
Construct an app request message.
sourcepub fn configure(
&self,
app_id: &str,
message: BaseExecuteMsg
) -> Result<CosmosMsg, AbstractSdkError>
pub fn configure( &self, app_id: &str, message: BaseExecuteMsg ) -> Result<CosmosMsg, AbstractSdkError>
Construct an app configuation message
sourcepub fn query<Q, R>(
&self,
app_id: &str,
query: impl Into<QueryMsg<BaseQueryMsg, Q>>
) -> Result<R, AbstractSdkError>where
Q: Serialize,
R: DeserializeOwned,
pub fn query<Q, R>(
&self,
app_id: &str,
query: impl Into<QueryMsg<BaseQueryMsg, Q>>
) -> Result<R, AbstractSdkError>where
Q: Serialize,
R: DeserializeOwned,
Smart query an app
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Apps<'a, T>
impl<'a, T> !RefUnwindSafe for Apps<'a, T>
impl<'a, T> !Send for Apps<'a, T>
impl<'a, T> !Sync for Apps<'a, T>
impl<'a, T> Unpin for Apps<'a, T>
impl<'a, T> !UnwindSafe for Apps<'a, T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request