#[non_exhaustive]pub struct RuleBasedProperties {
pub rules: Vec<Rule>,
pub attribute_matching_model: AttributeMatchingModel,
pub match_purpose: Option<MatchPurpose>,
}
Expand description
An object which defines the list of matching rules to run in a matching workflow. RuleBasedProperties contain a Rules
field, which is a list of rule objects.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.rules: Vec<Rule>
A list of Rule
objects, each of which have fields RuleName
and MatchingKeys
.
attribute_matching_model: AttributeMatchingModel
The comparison type. You can either choose ONE_TO_ONE
or MANY_TO_MANY
as the attributeMatchingModel
.
If you choose MANY_TO_MANY
, the system can match attributes across the sub-types of an attribute type. For example, if the value of the Email
field of Profile A and the value of BusinessEmail
field of Profile B matches, the two profiles are matched on the Email
attribute type.
If you choose ONE_TO_ONE
, the system can only match attributes if the sub-types are an exact match. For example, for the Email
attribute type, the system will only consider it a match if the value of the Email
field of Profile A matches the value of the Email
field of Profile B.
match_purpose: Option<MatchPurpose>
An indicator of whether to generate IDs and index the data or not.
If you choose IDENTIFIER_GENERATION
, the process generates IDs and indexes the data.
If you choose INDEXING
, the process indexes the data without generating IDs.
Implementations§
source§impl RuleBasedProperties
impl RuleBasedProperties
sourcepub fn rules(&self) -> &[Rule]
pub fn rules(&self) -> &[Rule]
A list of Rule
objects, each of which have fields RuleName
and MatchingKeys
.
sourcepub fn attribute_matching_model(&self) -> &AttributeMatchingModel
pub fn attribute_matching_model(&self) -> &AttributeMatchingModel
The comparison type. You can either choose ONE_TO_ONE
or MANY_TO_MANY
as the attributeMatchingModel
.
If you choose MANY_TO_MANY
, the system can match attributes across the sub-types of an attribute type. For example, if the value of the Email
field of Profile A and the value of BusinessEmail
field of Profile B matches, the two profiles are matched on the Email
attribute type.
If you choose ONE_TO_ONE
, the system can only match attributes if the sub-types are an exact match. For example, for the Email
attribute type, the system will only consider it a match if the value of the Email
field of Profile A matches the value of the Email
field of Profile B.
sourcepub fn match_purpose(&self) -> Option<&MatchPurpose>
pub fn match_purpose(&self) -> Option<&MatchPurpose>
An indicator of whether to generate IDs and index the data or not.
If you choose IDENTIFIER_GENERATION
, the process generates IDs and indexes the data.
If you choose INDEXING
, the process indexes the data without generating IDs.
source§impl RuleBasedProperties
impl RuleBasedProperties
sourcepub fn builder() -> RuleBasedPropertiesBuilder
pub fn builder() -> RuleBasedPropertiesBuilder
Creates a new builder-style object to manufacture RuleBasedProperties
.
Trait Implementations§
source§impl Clone for RuleBasedProperties
impl Clone for RuleBasedProperties
source§fn clone(&self) -> RuleBasedProperties
fn clone(&self) -> RuleBasedProperties
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RuleBasedProperties
impl Debug for RuleBasedProperties
source§impl PartialEq for RuleBasedProperties
impl PartialEq for RuleBasedProperties
impl StructuralPartialEq for RuleBasedProperties
Auto Trait Implementations§
impl Freeze for RuleBasedProperties
impl RefUnwindSafe for RuleBasedProperties
impl Send for RuleBasedProperties
impl Sync for RuleBasedProperties
impl Unpin for RuleBasedProperties
impl UnwindSafe for RuleBasedProperties
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more