Struct edge_schema::schema::CronJobSpecV1
source · pub struct CronJobSpecV1 {
pub schedule: String,
pub max_schedule_drift: Option<PrettyDuration>,
pub job: JobDefinition,
}Expand description
A cronjob.
Fields§
§schedule: StringDefine when to execute the job. May be either:
- an interval, eg “2days”, “1h[our]”, “30s”, …
- A cron expression, eg “0 0 * * *”, “0 0 1 * *”, … See https://en.wikipedia.org/wiki/Cron for the syntax
max_schedule_drift: Option<PrettyDuration>Defines the time range in which the job may be executed.
The system will try to backfill missed job executions to ensure each job is executed. This setting limits the time range in which backfilling is performed.
job: JobDefinitionImplementations§
source§impl CronJobSpecV1
impl CronJobSpecV1
pub fn parse_schedule(&self) -> Result<CronSchedule, CronTabParseError>
Trait Implementations§
source§impl Clone for CronJobSpecV1
impl Clone for CronJobSpecV1
source§fn clone(&self) -> CronJobSpecV1
fn clone(&self) -> CronJobSpecV1
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 CronJobSpecV1
impl Debug for CronJobSpecV1
source§impl<'de> Deserialize<'de> for CronJobSpecV1
impl<'de> Deserialize<'de> for CronJobSpecV1
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 EntityDescriptorConst for CronJobSpecV1
impl EntityDescriptorConst for CronJobSpecV1
const NAMESPACE: &'static str = "wasmer.io"
const NAME: &'static str = "CronJob"
const VERSION: &'static str = "v1-alpha1"
const KIND: &'static str = "wasmer.io/CronJob.v1-alpha1"
§type Spec = CronJobSpecV1
type Spec = CronJobSpecV1
Entity specification.
fn json_schema() -> RootSchema
fn build_uri_str(name: &str) -> String
fn build_uri(name: &str) -> Result<EntityUri, EntityUriParseError>
source§fn type_name() -> String
fn type_name() -> String
Build the name that is used for the EntityTypeSpec representing this type.
fn build_type_descriptor() -> Entity<EntityTypeSpec>where
Self: JsonSchema + Sized,
source§impl JsonSchema for CronJobSpecV1
impl JsonSchema for CronJobSpecV1
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
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 CronJobSpecV1
impl PartialEq for CronJobSpecV1
source§fn eq(&self, other: &CronJobSpecV1) -> bool
fn eq(&self, other: &CronJobSpecV1) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for CronJobSpecV1
impl Serialize for CronJobSpecV1
impl Eq for CronJobSpecV1
impl StructuralEq for CronJobSpecV1
impl StructuralPartialEq for CronJobSpecV1
Auto Trait Implementations§
impl RefUnwindSafe for CronJobSpecV1
impl Send for CronJobSpecV1
impl Sync for CronJobSpecV1
impl Unpin for CronJobSpecV1
impl UnwindSafe for CronJobSpecV1
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
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.