pub struct Adapters<'a, T: AdapterInterface> { /* private fields */ }Expand description
API for accessing Abstract Adapters installed on the account.
§Example
use abstract_sdk::prelude::*;
let adapters: Adapters<MockModule>  = module.adapters(deps.as_ref());Implementations§
Source§impl<'a, T: AdapterInterface> Adapters<'a, T>
 
impl<'a, T: AdapterInterface> Adapters<'a, T>
Sourcepub fn execute<M: Serialize + Into<ExecuteMsg<M>>>(
    &self,
    adapter_id: ModuleId<'_>,
    message: M,
) -> AbstractSdkResult<CosmosMsg>
 
pub fn execute<M: Serialize + Into<ExecuteMsg<M>>>( &self, adapter_id: ModuleId<'_>, message: M, ) -> AbstractSdkResult<CosmosMsg>
Interactions with Abstract Adapters Construct an adapter execute message.
Sourcepub fn query<Q: Serialize, R: DeserializeOwned>(
    &self,
    adapter_id: ModuleId<'_>,
    query: impl Into<QueryMsg<Q>>,
) -> AbstractSdkResult<R>
 
pub fn query<Q: Serialize, R: DeserializeOwned>( &self, adapter_id: ModuleId<'_>, query: impl Into<QueryMsg<Q>>, ) -> AbstractSdkResult<R>
Smart query an Adapter
Trait Implementations§
Auto Trait Implementations§
impl<'a, T> Freeze for Adapters<'a, T>
impl<'a, T> !RefUnwindSafe for Adapters<'a, T>
impl<'a, T> !Send for Adapters<'a, T>
impl<'a, T> !Sync for Adapters<'a, T>
impl<'a, T> Unpin for Adapters<'a, T>
impl<'a, T> !UnwindSafe for Adapters<'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§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
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