Struct aws_sdk_comprehend::model::PiiEntity [−][src]
#[non_exhaustive]pub struct PiiEntity {
pub score: Option<f32>,
pub type: Option<PiiEntityType>,
pub begin_offset: Option<i32>,
pub end_offset: Option<i32>,
}Expand description
Provides information about a PII entity.
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.score: Option<f32>The level of confidence that Amazon Comprehend has in the accuracy of the detection.
type: Option<PiiEntityType>The entity's type.
begin_offset: Option<i32>A character offset in the input text that shows where the PII entity begins (the first character is at position 0). The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.
end_offset: Option<i32>A character offset in the input text that shows where the PII entity ends. The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.
Implementations
The level of confidence that Amazon Comprehend has in the accuracy of the detection.
The entity's type.
A character offset in the input text that shows where the PII entity begins (the first character is at position 0). The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.
A character offset in the input text that shows where the PII entity ends. The offset returns the position of each UTF-8 code point in the string. A code point is the abstract character from a particular graphical representation. For example, a multi-byte UTF-8 character maps to a single code point.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for PiiEntity
impl UnwindSafe for PiiEntity
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more