pub struct EntityGraphConfig {
pub enabled: bool,
pub cross_process: CrossProcessConfig,
pub strength_config: StrengthConfig,
pub include_organizational: bool,
pub include_document: bool,
}Expand description
Configuration for entity graph generation.
Fields§
§enabled: boolEnable entity graph generation
cross_process: CrossProcessConfigCross-process link configuration
strength_config: StrengthConfigStrength calculation settings
include_organizational: boolInclude organizational relationships
include_document: boolInclude document relationships
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