Struct abstract_sdk::Adapters
source · 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 request<M: Serialize + Into<ExecuteMsg<M, Empty>>>(
&self,
adapter_id: ModuleId<'_>,
message: M
) -> AbstractSdkResult<CosmosMsg>
pub fn request<M: Serialize + Into<ExecuteMsg<M, Empty>>>( &self, adapter_id: ModuleId<'_>, message: M ) -> AbstractSdkResult<CosmosMsg>
Interactions with Abstract Adapters Construct an adapter request 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> !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§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moresource§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