Skip to main content

CorrespondenceEngineConfig

Struct CorrespondenceEngineConfig 

Source
pub struct CorrespondenceEngineConfig {
    pub rules: Vec<CoreRule>,
    pub writers: Vec<Arc<dyn EditListWriter>>,
    pub compaction: Vec<Arc<dyn CompactionRule>>,
    pub annotators: Vec<Arc<dyn ProjectionAnnotator>>,
    pub identity_extractors: Vec<Arc<dyn IdentityExtractor>>,
    pub row_keys: BTreeMap<String, Vec<String>>,
    pub row_identity_policies: BTreeMap<String, RowIdentityPolicies>,
    pub node_identities: BTreeMap<String, NodeIdentity>,
    pub root_projection: ProjectionHint,
    pub dataset_configurator: Option<Arc<dyn CorrespondenceDatasetConfigurator>>,
    pub dispatch_resolver: Option<Arc<dyn DispatchResolver>>,
}
Expand description

In-process registration surface for correspondence rule packs.

The engine that consumes this type lives in binoc-core, but the type stays in the SDK so stdlib and third-party packs can be configured without depending on host internals.

Fields§

§rules: Vec<CoreRule>§writers: Vec<Arc<dyn EditListWriter>>§compaction: Vec<Arc<dyn CompactionRule>>§annotators: Vec<Arc<dyn ProjectionAnnotator>>§identity_extractors: Vec<Arc<dyn IdentityExtractor>>

Partition-identity extractors, keyed by artifact format (CFM-72). The engine dispatches these JIT over the unmatched residue when a partition-capable pair rule asks for a node’s identity tokens; they are never stored in the IR or gold. A format with no extractor here is simply not partition-capable.

§row_keys: BTreeMap<String, Vec<String>>§row_identity_policies: BTreeMap<String, RowIdentityPolicies>§node_identities: BTreeMap<String, NodeIdentity>§root_projection: ProjectionHint§dataset_configurator: Option<Arc<dyn CorrespondenceDatasetConfigurator>>§dispatch_resolver: Option<Arc<dyn DispatchResolver>>

Optional path-scoped dispatch resolver installed by a rule pack’s dataset configurator. Core treats it as opaque: it may annotate an item before declarative dispatch and may restrict dispatch to a named rule for that item.

Trait Implementations§

Source§

impl Clone for CorrespondenceEngineConfig

Source§

fn clone(&self) -> CorrespondenceEngineConfig

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Default for CorrespondenceEngineConfig

Source§

fn default() -> CorrespondenceEngineConfig

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.