pub enum QueryMsg {
Trio {},
Config {},
ProtocolFees {
asset_id: Option<String>,
all_time: Option<bool>,
},
BurnedFees {
asset_id: Option<String>,
},
Pool {},
Simulation {
offer_asset: Asset,
ask_asset: Asset,
},
ReverseSimulation {
ask_asset: Asset,
offer_asset: Asset,
},
}Variants§
Trio
Retrieves the info for the trio.
Config
Retrieves the configuration of the pool.
ProtocolFees
Retrieves the protocol fees that have been accrued. If all_time is true, it will return
the fees collected since the inception of the pool. On the other hand, if all_time is set
to false, only the fees that has been accrued by the pool but not collected by the fee
collector will be returned.
BurnedFees
Retrieves the fees that have been burned by the pool.
Pool
Retrieves the pool information.
Simulation
Simulates a swap.
ReverseSimulation
Simulates a reverse swap, i.e. given the ask asset, how much of the offer asset is needed to perform the swap.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for QueryMsg
impl<'de> Deserialize<'de> for QueryMsg
Source§fn 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
Source§impl JsonSchema for QueryMsg
impl JsonSchema for QueryMsg
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn 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 moreSource§impl QueryResponses for QueryMsg
Available on non-WebAssembly only.
impl QueryResponses for QueryMsg
Available on non-WebAssembly only.
fn response_schemas_impl() -> BTreeMap<String, RootSchema>
fn response_schemas() -> Result<BTreeMap<String, RootSchema>, IntegrityError>
impl StructuralPartialEq for QueryMsg
Auto Trait Implementations§
impl Freeze for QueryMsg
impl RefUnwindSafe for QueryMsg
impl Send for QueryMsg
impl Sync for QueryMsg
impl Unpin for QueryMsg
impl UnwindSafe for QueryMsg
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