#[non_exhaustive]pub struct SchemaInputAttribute {
pub field_name: String,
pub type: SchemaAttributeType,
pub group_name: Option<String>,
pub match_key: Option<String>,
pub sub_type: Option<String>,
pub hashed: Option<bool>,
}
Expand description
An object containing FieldName
, Type
, GroupName
, MatchKey
, Hashing
, and SubType
.
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.field_name: String
A string containing the field name.
type: SchemaAttributeType
The type of the attribute, selected from a list of values.
group_name: Option<String>
A string that instructs Entity Resolution to combine several columns into a unified column with the identical attribute type.
For example, when working with columns such as first_name
, middle_name
, and last_name
, assigning them a common groupName
will prompt Entity Resolution to concatenate them into a single value.
match_key: Option<String>
A key that allows grouping of multiple input attributes into a unified matching group.
For example, consider a scenario where the source table contains various addresses, such as business_address
and shipping_address
. By assigning a matchKey
called address
to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group.
If no matchKey
is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.
sub_type: Option<String>
The subtype of the attribute, selected from a list of values.
hashed: Option<bool>
Indicates if the column values are hashed in the schema input. If the value is set to TRUE
, the column values are hashed. If the value is set to FALSE
, the column values are cleartext.
Implementations§
source§impl SchemaInputAttribute
impl SchemaInputAttribute
sourcepub fn field_name(&self) -> &str
pub fn field_name(&self) -> &str
A string containing the field name.
sourcepub fn type(&self) -> &SchemaAttributeType
pub fn type(&self) -> &SchemaAttributeType
The type of the attribute, selected from a list of values.
sourcepub fn group_name(&self) -> Option<&str>
pub fn group_name(&self) -> Option<&str>
A string that instructs Entity Resolution to combine several columns into a unified column with the identical attribute type.
For example, when working with columns such as first_name
, middle_name
, and last_name
, assigning them a common groupName
will prompt Entity Resolution to concatenate them into a single value.
sourcepub fn match_key(&self) -> Option<&str>
pub fn match_key(&self) -> Option<&str>
A key that allows grouping of multiple input attributes into a unified matching group.
For example, consider a scenario where the source table contains various addresses, such as business_address
and shipping_address
. By assigning a matchKey
called address
to both attributes, Entity Resolution will match records across these fields to create a consolidated matching group.
If no matchKey
is specified for a column, it won't be utilized for matching purposes but will still be included in the output table.
source§impl SchemaInputAttribute
impl SchemaInputAttribute
sourcepub fn builder() -> SchemaInputAttributeBuilder
pub fn builder() -> SchemaInputAttributeBuilder
Creates a new builder-style object to manufacture SchemaInputAttribute
.
Trait Implementations§
source§impl Clone for SchemaInputAttribute
impl Clone for SchemaInputAttribute
source§fn clone(&self) -> SchemaInputAttribute
fn clone(&self) -> SchemaInputAttribute
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for SchemaInputAttribute
impl Debug for SchemaInputAttribute
source§impl PartialEq for SchemaInputAttribute
impl PartialEq for SchemaInputAttribute
impl StructuralPartialEq for SchemaInputAttribute
Auto Trait Implementations§
impl Freeze for SchemaInputAttribute
impl RefUnwindSafe for SchemaInputAttribute
impl Send for SchemaInputAttribute
impl Sync for SchemaInputAttribute
impl Unpin for SchemaInputAttribute
impl UnwindSafe for SchemaInputAttribute
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