pub struct EntityGraphConfig {
pub include_intercompany_edges: bool,
pub compute_consolidation_weights: bool,
pub min_ownership_percent: Decimal,
pub include_indirect_ownership: bool,
}Expand description
Configuration for entity graph building.
Fields§
§include_intercompany_edges: boolWhether to include intercompany transaction edges.
compute_consolidation_weights: boolWhether to compute consolidation path weights.
min_ownership_percent: DecimalMinimum ownership percentage to include.
include_indirect_ownership: boolWhether to include indirect ownership paths.
Trait Implementations§
Source§impl Clone for EntityGraphConfig
impl Clone for EntityGraphConfig
Source§fn clone(&self) -> EntityGraphConfig
fn clone(&self) -> EntityGraphConfig
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 EntityGraphConfig
impl Debug for EntityGraphConfig
Auto Trait Implementations§
impl Freeze for EntityGraphConfig
impl RefUnwindSafe for EntityGraphConfig
impl Send for EntityGraphConfig
impl Sync for EntityGraphConfig
impl Unpin for EntityGraphConfig
impl UnwindSafe for EntityGraphConfig
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