pub struct ManufacturingProcessConfig {
pub enabled: bool,
pub production_orders: ProductionOrderConfig,
pub costing: ManufacturingCostingConfig,
pub routing: RoutingConfig,
}Expand description
Manufacturing process configuration (production orders, WIP, routing).
Fields§
§enabled: boolEnable manufacturing generation
production_orders: ProductionOrderConfigProduction order configuration
costing: ManufacturingCostingConfigCosting configuration
routing: RoutingConfigRouting configuration
Trait Implementations§
Source§impl Clone for ManufacturingProcessConfig
impl Clone for ManufacturingProcessConfig
Source§fn clone(&self) -> ManufacturingProcessConfig
fn clone(&self) -> ManufacturingProcessConfig
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 ManufacturingProcessConfig
impl Debug for ManufacturingProcessConfig
Source§impl Default for ManufacturingProcessConfig
impl Default for ManufacturingProcessConfig
Source§fn default() -> ManufacturingProcessConfig
fn default() -> ManufacturingProcessConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ManufacturingProcessConfig
impl<'de> Deserialize<'de> for ManufacturingProcessConfig
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 ManufacturingProcessConfig
impl RefUnwindSafe for ManufacturingProcessConfig
impl Send for ManufacturingProcessConfig
impl Sync for ManufacturingProcessConfig
impl Unpin for ManufacturingProcessConfig
impl UnsafeUnpin for ManufacturingProcessConfig
impl UnwindSafe for ManufacturingProcessConfig
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