pub struct BpmnJsonVariable {
pub name: String,
pub variable_type: Option<String>,
pub default_value: Option<Value>,
}Expand description
Variable Definition
Fields§
§name: StringVariable name
variable_type: Option<String>Variable type
default_value: Option<Value>Default value
Trait Implementations§
Source§impl Clone for BpmnJsonVariable
impl Clone for BpmnJsonVariable
Source§fn clone(&self) -> BpmnJsonVariable
fn clone(&self) -> BpmnJsonVariable
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BpmnJsonVariable
impl Debug for BpmnJsonVariable
Source§impl<'de> Deserialize<'de> for BpmnJsonVariable
impl<'de> Deserialize<'de> for BpmnJsonVariable
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BpmnJsonVariable
impl RefUnwindSafe for BpmnJsonVariable
impl Send for BpmnJsonVariable
impl Sync for BpmnJsonVariable
impl Unpin for BpmnJsonVariable
impl UnsafeUnpin for BpmnJsonVariable
impl UnwindSafe for BpmnJsonVariable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more