[][src]Struct zeebe::WorkflowMetadata

pub struct WorkflowMetadata(_);

Metadata information about a workflow.

Implementations

impl WorkflowMetadata[src]

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

the bpmn process ID, as parsed during deployment; together with the version forms a unique identifier for a specific workflow definition

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

the assigned process version

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

the assigned key, which acts as a unique identifier for this workflow

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

the resource name (see: WorkflowRequestObject.name) from which this workflow was parsed

Trait Implementations

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