Struct temporal_sdk_core::protos::temporal::api::history::v1::StartChildWorkflowExecutionInitiatedEventAttributes[][src]

pub struct StartChildWorkflowExecutionInitiatedEventAttributes {
Show fields pub namespace: String, pub workflow_id: String, pub workflow_type: Option<WorkflowType>, pub task_queue: Option<TaskQueue>, pub input: Option<Payloads>, pub workflow_execution_timeout: Option<Duration>, pub workflow_run_timeout: Option<Duration>, pub workflow_task_timeout: Option<Duration>, pub parent_close_policy: i32, pub control: String, pub workflow_task_completed_event_id: i64, pub workflow_id_reuse_policy: i32, pub retry_policy: Option<RetryPolicy>, pub cron_schedule: String, pub header: Option<Header>, pub memo: Option<Memo>, pub search_attributes: Option<SearchAttributes>,
}

Fields

namespace: Stringworkflow_id: Stringworkflow_type: Option<WorkflowType>task_queue: Option<TaskQueue>input: Option<Payloads>workflow_execution_timeout: Option<Duration>

Total workflow execution timeout including retries and continue as new.

workflow_run_timeout: Option<Duration>

Timeout of a single workflow run.

workflow_task_timeout: Option<Duration>

Timeout of a single workflow task.

parent_close_policy: i32

Default: PARENT_CLOSE_POLICY_TERMINATE.

control: Stringworkflow_task_completed_event_id: i64workflow_id_reuse_policy: i32

Default: WORKFLOW_ID_REUSE_POLICY_ALLOW_DUPLICATE.

retry_policy: Option<RetryPolicy>cron_schedule: Stringheader: Option<Header>memo: Option<Memo>search_attributes: Option<SearchAttributes>

Implementations

impl StartChildWorkflowExecutionInitiatedEventAttributes[src]

pub fn parent_close_policy(&self) -> ParentClosePolicy[src]

Returns the enum value of parent_close_policy, or the default if the field is set to an invalid enum value.

pub fn set_parent_close_policy(&mut self, value: ParentClosePolicy)[src]

Sets parent_close_policy to the provided enum value.

pub fn workflow_id_reuse_policy(&self) -> WorkflowIdReusePolicy[src]

Returns the enum value of workflow_id_reuse_policy, or the default if the field is set to an invalid enum value.

pub fn set_workflow_id_reuse_policy(&mut self, value: WorkflowIdReusePolicy)[src]

Sets workflow_id_reuse_policy to the provided enum value.

Trait Implementations

impl Clone for StartChildWorkflowExecutionInitiatedEventAttributes[src]

impl Debug for StartChildWorkflowExecutionInitiatedEventAttributes[src]

impl Default for StartChildWorkflowExecutionInitiatedEventAttributes[src]

impl From<StartChildWorkflowExecutionInitiatedEventAttributes> for Attributes[src]

impl Message for StartChildWorkflowExecutionInitiatedEventAttributes[src]

impl PartialEq<StartChildWorkflowExecutionInitiatedEventAttributes> for StartChildWorkflowExecutionInitiatedEventAttributes[src]

impl StructuralPartialEq for StartChildWorkflowExecutionInitiatedEventAttributes[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]