pub enum CronCatCosmosQuery<T = WasmQuery> {
Croncat(CroncatQuery),
Wasm(T),
}
Expand description
Query given module contract with a message
Variants§
Croncat(CroncatQuery)
Wasm(T)
Trait Implementations§
source§impl<T> Clone for CosmosQuery<T>where
T: Clone,
impl<T> Clone for CosmosQuery<T>where T: Clone,
source§fn clone(&self) -> CosmosQuery<T>
fn clone(&self) -> CosmosQuery<T>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<T> Debug for CosmosQuery<T>where
T: Debug,
impl<T> Debug for CosmosQuery<T>where T: Debug,
source§impl<'de, T> Deserialize<'de> for CosmosQuery<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for CosmosQuery<T>where T: Deserialize<'de>,
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<CosmosQuery<T>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<CosmosQuery<T>, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<T> JsonSchema for CosmosQuery<T>where
T: JsonSchema,
impl<T> JsonSchema for CosmosQuery<T>where T: JsonSchema,
source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
source§fn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
§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<T> PartialEq<CosmosQuery<T>> for CosmosQuery<T>where
T: PartialEq<T>,
impl<T> PartialEq<CosmosQuery<T>> for CosmosQuery<T>where T: PartialEq<T>,
source§fn eq(&self, other: &CosmosQuery<T>) -> bool
fn eq(&self, other: &CosmosQuery<T>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl<T> Serialize for CosmosQuery<T>where
T: Serialize,
impl<T> Serialize for CosmosQuery<T>where T: Serialize,
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> StructuralPartialEq for CosmosQuery<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for CosmosQuery<T>where T: RefUnwindSafe,
impl<T> Send for CosmosQuery<T>where T: Send,
impl<T> Sync for CosmosQuery<T>where T: Sync,
impl<T> Unpin for CosmosQuery<T>where T: Unpin,
impl<T> UnwindSafe for CosmosQuery<T>where T: UnwindSafe,
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