[][src]Struct camunda_client::models::variable_value_dto::VariableValueDto

pub struct VariableValueDto {
    pub value: Option<Value>,
    pub _type: Option<String>,
    pub value_info: Option<HashMap<String, Value>>,
}

Fields

value: Option<Value>

The variable's value. Value differs depending on the variable's type and on the deserializeValues parameter.

_type: Option<String>

The value type of the variable.

value_info: Option<HashMap<String, Value>>

A JSON object containing additional, value-type-dependent properties. For serialized variables of type Object, the following properties can be provided: * objectTypeName: A string representation of the object's type name. * serializationDataFormat: The serialization format used to store the variable. For serialized variables of type File, the following properties can be provided: * filename: The name of the file. This is not the variable name but the name that will be used when downloading the file again. * mimetype: The MIME type of the file that is being uploaded. * encoding: The encoding of the file that is being uploaded.

Implementations

impl VariableValueDto[src]

Trait Implementations

impl Clone for VariableValueDto[src]

impl Debug for VariableValueDto[src]

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

impl PartialEq<VariableValueDto> for VariableValueDto[src]

impl Serialize for VariableValueDto[src]

impl StructuralPartialEq for VariableValueDto[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

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