pub struct BpmnMigrationResult {
pub from_version: i64,
pub to_version: i64,
pub bpmn_flow_path: String,
pub dry_run: bool,
pub migrated: Vec<Uuid>,
}Expand description
BpmnMigrationResult : what a migrate call actually moved
Fields§
§from_version: i64§to_version: i64§bpmn_flow_path: String§dry_run: bool§migrated: Vec<Uuid>the instance ids repinned; empty for a dry run
Implementations§
Trait Implementations§
Source§impl Clone for BpmnMigrationResult
impl Clone for BpmnMigrationResult
Source§fn clone(&self) -> BpmnMigrationResult
fn clone(&self) -> BpmnMigrationResult
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 BpmnMigrationResult
impl Debug for BpmnMigrationResult
Source§impl Default for BpmnMigrationResult
impl Default for BpmnMigrationResult
Source§fn default() -> BpmnMigrationResult
fn default() -> BpmnMigrationResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BpmnMigrationResult
impl<'de> Deserialize<'de> for BpmnMigrationResult
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 BpmnMigrationResult
impl PartialEq for BpmnMigrationResult
Source§impl Serialize for BpmnMigrationResult
impl Serialize for BpmnMigrationResult
impl StructuralPartialEq for BpmnMigrationResult
Auto Trait Implementations§
impl Freeze for BpmnMigrationResult
impl RefUnwindSafe for BpmnMigrationResult
impl Send for BpmnMigrationResult
impl Sync for BpmnMigrationResult
impl Unpin for BpmnMigrationResult
impl UnsafeUnpin for BpmnMigrationResult
impl UnwindSafe for BpmnMigrationResult
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