Struct secret_cosmwasm_std::Extern
source · [−]Expand description
Holds all external dependencies of the contract. Designed to allow easy dependency injection at runtime. This cannot be copied or cloned since it would behave differently for mock storages and a bridge storage in the VM.
Fields
storage: S
api: A
querier: Q
Implementations
sourceimpl<S: Storage, A: Api, Q: Querier> Extern<S, A, Q>
impl<S: Storage, A: Api, Q: Querier> Extern<S, A, Q>
sourcepub fn change_querier<T: Querier, F: Fn(Q) -> T>(
self,
transform: F
) -> Extern<S, A, T>
pub fn change_querier<T: Querier, F: Fn(Q) -> T>(
self,
transform: F
) -> Extern<S, A, T>
change_querier is a helper mainly for test code when swapping out the Querier from the auto-generated one from mock_dependencies. This changes the type of Extern so replaces requires some boilerplate.
Auto Trait Implementations
impl<S, A, Q> RefUnwindSafe for Extern<S, A, Q> where
A: RefUnwindSafe,
Q: RefUnwindSafe,
S: RefUnwindSafe,
impl<S, A, Q> Send for Extern<S, A, Q> where
Q: Send,
S: Send,
impl<S, A, Q> Sync for Extern<S, A, Q> where
A: Sync,
Q: Sync,
S: Sync,
impl<S, A, Q> Unpin for Extern<S, A, Q> where
A: Unpin,
Q: Unpin,
S: Unpin,
impl<S, A, Q> UnwindSafe for Extern<S, A, Q> where
A: UnwindSafe,
Q: UnwindSafe,
S: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more