pub enum TechnologyTransitionTypeSchemaConfig {
ErpMigration {
source_system: String,
target_system: String,
cutover_date: String,
stabilization_end: String,
duplicate_rate: f64,
format_mismatch_rate: f64,
},
ModuleImplementation {
module_name: String,
go_live_date: String,
},
}Expand description
Technology transition type configuration.
Variants§
Trait Implementations§
Source§impl Clone for TechnologyTransitionTypeSchemaConfig
impl Clone for TechnologyTransitionTypeSchemaConfig
Source§fn clone(&self) -> TechnologyTransitionTypeSchemaConfig
fn clone(&self) -> TechnologyTransitionTypeSchemaConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for TechnologyTransitionTypeSchemaConfig
impl<'de> Deserialize<'de> for TechnologyTransitionTypeSchemaConfig
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 TechnologyTransitionTypeSchemaConfig
impl RefUnwindSafe for TechnologyTransitionTypeSchemaConfig
impl Send for TechnologyTransitionTypeSchemaConfig
impl Sync for TechnologyTransitionTypeSchemaConfig
impl Unpin for TechnologyTransitionTypeSchemaConfig
impl UnwindSafe for TechnologyTransitionTypeSchemaConfig
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