Enum secret_cosmwasm_std::BankQuery
source · [−]pub enum BankQuery {
Balance {
address: HumanAddr,
denom: String,
},
AllBalances {
address: HumanAddr,
},
}
Variants
Balance
This calls into the native bank module for one denomination Return value is BalanceResponse
AllBalances
Fields
address: HumanAddr
This calls into the native bank module for all denominations. Note that this may be much more expensive than Balance and should be avoided if possible. Return value is AllBalanceResponse.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for BankQuery
impl<'de> Deserialize<'de> for BankQuery
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T: Clone + Debug + PartialEq + JsonSchema> From<BankQuery> for QueryRequest<T>
impl<T: Clone + Debug + PartialEq + JsonSchema> From<BankQuery> for QueryRequest<T>
sourceimpl JsonSchema for BankQuery
impl JsonSchema for BankQuery
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the $ref
keyword. Read more
impl StructuralPartialEq for BankQuery
Auto Trait Implementations
impl RefUnwindSafe for BankQuery
impl Send for BankQuery
impl Sync for BankQuery
impl Unpin for BankQuery
impl UnwindSafe for BankQuery
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more