pub struct DelegateOccurrence {
pub flow_path: String,
pub element_id: String,
pub draft_only: bool,
}Expand description
DelegateOccurrence : One place a delegate key is referenced from.
Fields§
§flow_path: StringThe bpmn_flow.path the reference was read from.
element_id: StringThe serviceTask element id – what an editor should highlight.
draft_only: boolTrue when the reference comes from a draft_only definition (an imported-but-not-yet-deployable estate) rather than a deployed one.
Implementations§
Trait Implementations§
Source§impl Clone for DelegateOccurrence
impl Clone for DelegateOccurrence
Source§fn clone(&self) -> DelegateOccurrence
fn clone(&self) -> DelegateOccurrence
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 DelegateOccurrence
impl Debug for DelegateOccurrence
Source§impl Default for DelegateOccurrence
impl Default for DelegateOccurrence
Source§fn default() -> DelegateOccurrence
fn default() -> DelegateOccurrence
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DelegateOccurrence
impl<'de> Deserialize<'de> for DelegateOccurrence
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
Source§impl PartialEq for DelegateOccurrence
impl PartialEq for DelegateOccurrence
Source§impl Serialize for DelegateOccurrence
impl Serialize for DelegateOccurrence
impl StructuralPartialEq for DelegateOccurrence
Auto Trait Implementations§
impl Freeze for DelegateOccurrence
impl RefUnwindSafe for DelegateOccurrence
impl Send for DelegateOccurrence
impl Sync for DelegateOccurrence
impl Unpin for DelegateOccurrence
impl UnsafeUnpin for DelegateOccurrence
impl UnwindSafe for DelegateOccurrence
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