pub struct SmartQuery {
pub contract_addr: String,
pub msg: Binary,
pub path_to_msg_value: PathToValue,
pub path_to_query_value: PathToValue,
}
Fields§
§contract_addr: String
§msg: Binary
§path_to_msg_value: PathToValue
Replace value inside this query
path_to_query_value: PathToValue
Value passed to the next iteration
Trait Implementations§
Source§impl Clone for SmartQuery
impl Clone for SmartQuery
Source§fn clone(&self) -> SmartQuery
fn clone(&self) -> SmartQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for SmartQuery
impl Debug for SmartQuery
Source§impl<'de> Deserialize<'de> for SmartQuery
impl<'de> Deserialize<'de> for SmartQuery
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 SmartQuery
impl JsonSchema for SmartQuery
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 PartialEq for SmartQuery
impl PartialEq for SmartQuery
Source§impl Serialize for SmartQuery
impl Serialize for SmartQuery
impl Eq for SmartQuery
impl StructuralPartialEq for SmartQuery
Auto Trait Implementations§
impl Freeze for SmartQuery
impl RefUnwindSafe for SmartQuery
impl Send for SmartQuery
impl Sync for SmartQuery
impl Unpin for SmartQuery
impl UnwindSafe for SmartQuery
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