Struct cw_croncat_core::msg::TaskResponse
source · pub struct TaskResponse {
pub task_hash: String,
pub owner_id: Addr,
pub interval: Interval,
pub boundary: Option<Boundary>,
pub stop_on_fail: bool,
pub total_deposit: Vec<Coin>,
pub total_cw20_deposit: Vec<Cw20CoinVerified>,
pub amount_for_one_task_native: Vec<Coin>,
pub amount_for_one_task_cw20: Vec<Cw20CoinVerified>,
pub actions: Vec<Action>,
pub queries: Option<Vec<CroncatQuery>>,
}Fields§
§task_hash: String§owner_id: Addr§interval: Interval§boundary: Option<Boundary>§stop_on_fail: bool§total_deposit: Vec<Coin>§total_cw20_deposit: Vec<Cw20CoinVerified>§amount_for_one_task_native: Vec<Coin>§amount_for_one_task_cw20: Vec<Cw20CoinVerified>§actions: Vec<Action>§queries: Option<Vec<CroncatQuery>>Trait Implementations§
source§impl Clone for TaskResponse
impl Clone for TaskResponse
source§fn clone(&self) -> TaskResponse
fn clone(&self) -> TaskResponse
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 Debug for TaskResponse
impl Debug for TaskResponse
source§impl<'de> Deserialize<'de> for TaskResponse
impl<'de> Deserialize<'de> for TaskResponse
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 From<Task> for TaskResponse
impl From<Task> for TaskResponse
source§impl JsonSchema for TaskResponse
impl JsonSchema for TaskResponse
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
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<TaskResponse> for TaskResponse
impl PartialEq<TaskResponse> for TaskResponse
source§fn eq(&self, other: &TaskResponse) -> bool
fn eq(&self, other: &TaskResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.