Struct croncat_sdk_tasks::types::Task
source · pub struct Task {
pub owner_addr: Addr,
pub interval: Interval,
pub boundary: Boundary,
pub stop_on_fail: bool,
pub actions: Vec<Action>,
pub queries: Vec<CosmosQuery>,
pub transforms: Vec<Transform>,
pub version: String,
pub amount_for_one_task: AmountForOneTask,
}
Fields§
§owner_addr: Addr
Entity responsible for this task, can change task details
interval: Interval
Scheduling definitions
boundary: Boundary
§stop_on_fail: bool
Defines if this task can continue until balance runs out
actions: Vec<Action>
The cosmos message to call, if time or rules are met
queries: Vec<CosmosQuery>
A prioritized list of messages that can be chained decision matrix required to complete before task action Rules MUST return the ResolverResponse type
transforms: Vec<Transform>
§version: String
§amount_for_one_task: AmountForOneTask
Implementations§
source§impl Task
impl Task
sourcepub fn to_hash_vec(&self, prefix: &str) -> Vec<u8>
pub fn to_hash_vec(&self, prefix: &str) -> Vec<u8>
Get the hash of a task based on parameters
pub fn recurring(&self) -> bool
pub fn is_evented(&self) -> bool
pub fn into_response(self, prefix: &str) -> TaskResponse
Trait Implementations§
source§impl<'de> Deserialize<'de> for Task
impl<'de> Deserialize<'de> for Task
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 Task
impl JsonSchema for Task
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(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 PartialEq<Task> for Task
impl PartialEq<Task> for Task
impl StructuralPartialEq for Task
Auto Trait Implementations§
impl RefUnwindSafe for Task
impl Send for Task
impl Sync for Task
impl Unpin for Task
impl UnwindSafe for Task
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere T: CastFrom<U>,
Casts
self
to type T
. The semantics of numeric casting with the as
operator are followed, so <T as As>::as_::<U>
can be used in the same way as T as U
for numeric conversions. Read moresource§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