[][src]Struct zeebe::CreateWorkflowInstanceWithResultResponse

pub struct CreateWorkflowInstanceWithResultResponse(_);

Created workflow instance with result data.

Implementations

impl CreateWorkflowInstanceWithResultResponse[src]

pub fn workflow_key(&self) -> i64[src]

the key of the workflow definition which was used to create the workflow instance

pub fn bpmn_process_id(&self) -> &str[src]

the BPMN process ID of the workflow definition which was used to create the workflow instance

pub fn version(&self) -> i32[src]

the version of the workflow definition which was used to create the workflow instance

pub fn workflow_instance_key(&self) -> i64[src]

the unique identifier of the created workflow instance; to be used wherever a request needs a workflow instance key (e.g. CancelWorkflowInstanceRequest)

pub fn variables_str(&self) -> &str[src]

Serialized JSON document that consists of visible variables in the root scope

pub fn variables(&self) -> Value[src]

JSON document consists of visible variables in the root scope

pub fn variables_as<'a, T: Deserialize<'a>>(&'a self) -> Option<T>[src]

Deserialize encoded json variables as a given type

Trait Implementations

impl Debug for CreateWorkflowInstanceWithResultResponse[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> 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, 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]