pub struct IoParameter {
pub name: String,
pub source: Option<String>,
pub target: Option<String>,
pub value: Option<String>,
}Expand description
Input/Output Parameter
Fields§
§name: String§source: Option<String>§target: Option<String>§value: Option<String>Implementations§
Source§impl IoParameter
impl IoParameter
pub fn from_json(json: BpmnJsonIoParameter) -> Self
pub fn to_json(&self) -> BpmnJsonIoParameter
Trait Implementations§
Source§impl Clone for IoParameter
impl Clone for IoParameter
Source§fn clone(&self) -> IoParameter
fn clone(&self) -> IoParameter
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 moreAuto Trait Implementations§
impl Freeze for IoParameter
impl RefUnwindSafe for IoParameter
impl Send for IoParameter
impl Sync for IoParameter
impl Unpin for IoParameter
impl UnsafeUnpin for IoParameter
impl UnwindSafe for IoParameter
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