[][src]Struct camunda_client::models::external_task_bpmn_error::ExternalTaskBpmnError

pub struct ExternalTaskBpmnError {
    pub worker_id: Option<String>,
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub variables: Option<HashMap<String, VariableValueDto>>,
}

Fields

worker_id: Option<String>

The id of the worker that reports the failure. Must match the id of the worker who has most recently locked the task.

error_code: Option<String>

An error code that indicates the predefined error. It is used to identify the BPMN error handler.

error_message: Option<String>

An error message that describes the error.

variables: Option<HashMap<String, VariableValueDto>>

A JSON object containing variable key-value pairs.

Implementations

impl ExternalTaskBpmnError[src]

Trait Implementations

impl Clone for ExternalTaskBpmnError[src]

impl Debug for ExternalTaskBpmnError[src]

impl<'de> Deserialize<'de> for ExternalTaskBpmnError[src]

impl PartialEq<ExternalTaskBpmnError> for ExternalTaskBpmnError[src]

impl Serialize for ExternalTaskBpmnError[src]

impl StructuralPartialEq for ExternalTaskBpmnError[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

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

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<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

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