pub struct MasterDataConfig {
pub vendors: VendorMasterConfig,
pub customers: CustomerMasterConfig,
pub materials: MaterialMasterConfig,
pub fixed_assets: FixedAssetMasterConfig,
pub employees: EmployeeMasterConfig,
pub cost_centers: CostCenterMasterConfig,
}Expand description
Master data generation configuration.
Fields§
§vendors: VendorMasterConfigVendor master data settings
customers: CustomerMasterConfigCustomer master data settings
materials: MaterialMasterConfigMaterial master data settings
fixed_assets: FixedAssetMasterConfigFixed asset master data settings
employees: EmployeeMasterConfigEmployee master data settings
cost_centers: CostCenterMasterConfigCost center master data settings
Trait Implementations§
Source§impl Clone for MasterDataConfig
impl Clone for MasterDataConfig
Source§fn clone(&self) -> MasterDataConfig
fn clone(&self) -> MasterDataConfig
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 Debug for MasterDataConfig
impl Debug for MasterDataConfig
Source§impl Default for MasterDataConfig
impl Default for MasterDataConfig
Source§fn default() -> MasterDataConfig
fn default() -> MasterDataConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for MasterDataConfig
impl<'de> Deserialize<'de> for MasterDataConfig
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 MasterDataConfig
impl RefUnwindSafe for MasterDataConfig
impl Send for MasterDataConfig
impl Sync for MasterDataConfig
impl Unpin for MasterDataConfig
impl UnwindSafe for MasterDataConfig
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