Struct abstract_sdk::prelude::Apps
source · pub struct Apps<'a, 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: AppInterface> Apps<'a, T>
impl<'a, T: AppInterface> Apps<'a, T>
sourcepub fn execute<M: Serialize>(
&self,
app_id: ModuleId<'_>,
message: impl Into<ExecuteMsg<M, Empty>>,
) -> AbstractSdkResult<CosmosMsg>
pub fn execute<M: Serialize>( &self, app_id: ModuleId<'_>, message: impl Into<ExecuteMsg<M, Empty>>, ) -> AbstractSdkResult<CosmosMsg>
Construct an app request message.
sourcepub fn query<Q: Serialize, R: DeserializeOwned>(
&self,
app_id: ModuleId<'_>,
query: impl Into<QueryMsg<Q>>,
) -> AbstractSdkResult<R>
pub fn query<Q: Serialize, R: DeserializeOwned>( &self, app_id: ModuleId<'_>, query: impl Into<QueryMsg<Q>>, ) -> AbstractSdkResult<R>
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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 more