pub struct CrossProcessLinksSchemaConfig {
pub enabled: bool,
pub inventory_p2p_o2c: bool,
pub payment_bank_reconciliation: bool,
pub intercompany_bilateral: bool,
pub inventory_link_rate: f64,
}Expand description
Configuration for cross-process linkages.
Fields§
§enabled: boolEnable cross-process link generation.
inventory_p2p_o2c: boolEnable inventory links between P2P and O2C.
payment_bank_reconciliation: boolEnable payment to bank reconciliation links.
intercompany_bilateral: boolEnable intercompany bilateral matching.
inventory_link_rate: f64Percentage of GR/Deliveries to link via inventory (0.0 - 1.0).
Trait Implementations§
Source§impl Clone for CrossProcessLinksSchemaConfig
impl Clone for CrossProcessLinksSchemaConfig
Source§fn clone(&self) -> CrossProcessLinksSchemaConfig
fn clone(&self) -> CrossProcessLinksSchemaConfig
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 CrossProcessLinksSchemaConfig
impl<'de> Deserialize<'de> for CrossProcessLinksSchemaConfig
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 CrossProcessLinksSchemaConfig
impl RefUnwindSafe for CrossProcessLinksSchemaConfig
impl Send for CrossProcessLinksSchemaConfig
impl Sync for CrossProcessLinksSchemaConfig
impl Unpin for CrossProcessLinksSchemaConfig
impl UnwindSafe for CrossProcessLinksSchemaConfig
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