Struct cosmwasm_schema::Api

source ·
pub struct Api {
    pub contract_name: String,
    pub contract_version: String,
    pub instantiate: RootSchema,
    pub execute: Option<RootSchema>,
    pub query: Option<RootSchema>,
    pub migrate: Option<RootSchema>,
    pub sudo: Option<RootSchema>,
    pub responses: Option<BTreeMap<String, RootSchema>>,
}
Expand description

Rust representation of a contract’s API.

Fields§

§contract_name: String§contract_version: String§instantiate: RootSchema§execute: Option<RootSchema>§query: Option<RootSchema>§migrate: Option<RootSchema>§sudo: Option<RootSchema>§responses: Option<BTreeMap<String, RootSchema>>

A mapping of query variants to response types

Implementations§

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.