[][src]Struct zeebe::DeployWorkflowBuilder

pub struct DeployWorkflowBuilder { /* fields omitted */ }

Deploys one or more workflows to Zeebe.

Note that this is an atomic call, i.e. either all workflows are deployed, or none of them are.

Implementations

impl DeployWorkflowBuilder[src]

pub fn new(client: Client) -> Self[src]

Create a new deploy workflow builder.

pub fn with_resource_file<T: Into<String>>(self, resource_file: T) -> Self[src]

Set a single resource file to upload.

pub fn with_resource_files(self, resource_files: Vec<String>) -> Self[src]

Set a list of resource files to uploaded.

pub fn with_resource_type(self, resource_type: WorkflowResourceType) -> Self[src]

Set the resource type for the uploaded workflows workflows.

pub async fn send(__arg0: Self) -> Result<DeployWorkflowResponse>[src]

Submit the workflows to the Zeebe brokers.

Trait Implementations

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