Struct abstract_sdk::App
source · pub struct App<'a, T: AppInterface> { /* private fields */ }Expand description
API for accessing Abstract Apps installed on the account.
Example
use abstract_sdk::prelude::*;
let app: App<MockModule> = module.apps(deps.as_ref());Implementations§
source§impl<'a, T: AppInterface> App<'a, T>
impl<'a, T: AppInterface> App<'a, T>
sourcepub fn request<M: Serialize>(
&self,
app_id: ModuleId<'_>,
message: impl Into<ExecuteMsg<M, Empty>>
) -> AbstractSdkResult<CosmosMsg>
pub fn request<M: Serialize>( &self, app_id: ModuleId<'_>, message: impl Into<ExecuteMsg<M, Empty>> ) -> AbstractSdkResult<CosmosMsg>
Construct an app request message.
sourcepub fn configure(
&self,
app_id: ModuleId<'_>,
query: BaseExecuteMsg
) -> AbstractSdkResult<CosmosMsg>
pub fn configure( &self, app_id: ModuleId<'_>, query: BaseExecuteMsg ) -> AbstractSdkResult<CosmosMsg>
Construct an app configuation message
sourcepub fn query<Q: Serialize, R: DeserializeOwned>(
&self,
app_id: ModuleId<'_>,
message: impl Into<QueryMsg<Q>>
) -> AbstractSdkResult<R>
pub fn query<Q: Serialize, R: DeserializeOwned>( &self, app_id: ModuleId<'_>, message: impl Into<QueryMsg<Q>> ) -> AbstractSdkResult<R>
Smart query an app
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> !RefUnwindSafe for App<'a, T>
impl<'a, T> !Send for App<'a, T>
impl<'a, T> !Sync for App<'a, T>
impl<'a, T> Unpin for App<'a, T>
impl<'a, T> !UnwindSafe for App<'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