pub struct BpmnMigrationCheck {
pub from_version: i64,
pub to_version: i64,
pub bpmn_flow_path: String,
pub eligible: bool,
pub blockers: Vec<BpmnMigrationBlocker>,
}Expand description
BpmnMigrationCheck : Whether an instance pinned to from_version may be repinned to to_version, and if not, why. A property of the pair, not of an instance.
Fields§
§from_version: i64§to_version: i64§bpmn_flow_path: String§eligible: bool§blockers: Vec<BpmnMigrationBlocker>Implementations§
Source§impl BpmnMigrationCheck
impl BpmnMigrationCheck
Sourcepub fn new(
from_version: i64,
to_version: i64,
bpmn_flow_path: String,
eligible: bool,
blockers: Vec<BpmnMigrationBlocker>,
) -> BpmnMigrationCheck
pub fn new( from_version: i64, to_version: i64, bpmn_flow_path: String, eligible: bool, blockers: Vec<BpmnMigrationBlocker>, ) -> BpmnMigrationCheck
Whether an instance pinned to from_version may be repinned to to_version, and if not, why. A property of the pair, not of an instance.
Trait Implementations§
Source§impl Clone for BpmnMigrationCheck
impl Clone for BpmnMigrationCheck
Source§fn clone(&self) -> BpmnMigrationCheck
fn clone(&self) -> BpmnMigrationCheck
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 BpmnMigrationCheck
impl Debug for BpmnMigrationCheck
Source§impl Default for BpmnMigrationCheck
impl Default for BpmnMigrationCheck
Source§fn default() -> BpmnMigrationCheck
fn default() -> BpmnMigrationCheck
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BpmnMigrationCheck
impl<'de> Deserialize<'de> for BpmnMigrationCheck
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 BpmnMigrationCheck
impl PartialEq for BpmnMigrationCheck
Source§impl Serialize for BpmnMigrationCheck
impl Serialize for BpmnMigrationCheck
impl StructuralPartialEq for BpmnMigrationCheck
Auto Trait Implementations§
impl Freeze for BpmnMigrationCheck
impl RefUnwindSafe for BpmnMigrationCheck
impl Send for BpmnMigrationCheck
impl Sync for BpmnMigrationCheck
impl Unpin for BpmnMigrationCheck
impl UnsafeUnpin for BpmnMigrationCheck
impl UnwindSafe for BpmnMigrationCheck
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