pub enum Action {
Show 17 variants AbortWorkflow { identifier: i64, }, AddCredential(CredentialContent), DeleteCredential { identifier: i64, }, DeleteWorkflow { identifier: i64, }, GetWorkflowDuration { identifier: i64, }, ListCredential { pagination: Pagination, }, ListUser { pagination: Pagination, }, ListWorker { identifier: Option<String>, job_id: Option<String>, pagination: Pagination, }, ListWorkflow { after_date: Option<DateTime<Utc>>, before_date: Option<DateTime<Utc>>, name: Option<String>, states: Vec<String>, pagination: Pagination, }, ShowCredential { identifier: String, }, ShowUser { identifier: i64, }, ShowWorker { identifier: String, }, ShowWorkflow { identifier: i64, mode: ShowWorkflowMode, }, StopWorker { identifier: String, }, StopWorkflow { identifier: i64, }, WorkerJobConsumptionResume { identifier: String, }, WorkerJobConsumptionStop { identifier: String, },
}

Variants

AbortWorkflow

Fields

identifier: i64

AddCredential(CredentialContent)

DeleteCredential

Fields

identifier: i64

DeleteWorkflow

Fields

identifier: i64

GetWorkflowDuration

Fields

identifier: i64

ListCredential

Fields

pagination: Pagination

ListUser

Fields

pagination: Pagination

ListWorker

Fields

identifier: Option<String>
job_id: Option<String>
pagination: Pagination

ListWorkflow

Fields

after_date: Option<DateTime<Utc>>
before_date: Option<DateTime<Utc>>
name: Option<String>
states: Vec<String>
pagination: Pagination

ShowCredential

Fields

identifier: String

ShowUser

Fields

identifier: i64

ShowWorker

Fields

identifier: String

ShowWorkflow

Fields

identifier: i64

StopWorker

Fields

identifier: String

StopWorkflow

Fields

identifier: i64

WorkerJobConsumptionResume

Fields

identifier: String

WorkerJobConsumptionStop

Fields

identifier: String

Implementations

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more