pub struct MockQuerier<C: DeserializeOwned = Empty> { /* private fields */ }
Expand description
MockQuerier holds an immutable table of bank balances TODO: also allow querying contracts
Implementations§
Source§impl<C: DeserializeOwned> MockQuerier<C>
impl<C: DeserializeOwned> MockQuerier<C>
pub fn new(balances: &[(&str, &[Coin])]) -> Self
pub fn update_balance( &mut self, addr: impl Into<String>, balance: Vec<Coin>, ) -> Option<Vec<Coin>>
pub fn update_staking( &mut self, denom: &str, validators: &[Validator], delegations: &[FullDelegation], )
pub fn with_custom_handler<CH>(self, handler: CH) -> Self
Source§impl<C: CustomQuery + DeserializeOwned> MockQuerier<C>
impl<C: CustomQuery + DeserializeOwned> MockQuerier<C>
pub fn handle_query(&self, request: &QueryRequest<C>) -> QuerierResult
Trait Implementations§
Source§impl<C: CustomQuery + DeserializeOwned> Querier for MockQuerier<C>
impl<C: CustomQuery + DeserializeOwned> Querier for MockQuerier<C>
Source§fn raw_query(&self, bin_request: &[u8]) -> QuerierResult
fn raw_query(&self, bin_request: &[u8]) -> QuerierResult
raw_query is all that must be implemented for the Querier.
This allows us to pass through binary queries from one level to another without
knowing the custom format, or we can decode it, with the knowledge of the allowed
types. People using the querier probably want one of the simpler auto-generated
helper methods
Auto Trait Implementations§
impl<C> Freeze for MockQuerier<C>
impl<C = Empty> !RefUnwindSafe for MockQuerier<C>
impl<C = Empty> !Send for MockQuerier<C>
impl<C = Empty> !Sync for MockQuerier<C>
impl<C> Unpin for MockQuerier<C>
impl<C = Empty> !UnwindSafe for MockQuerier<C>
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