Struct aws_sdk_comprehend::model::Entity [−][src]
#[non_exhaustive]pub struct Entity {
pub score: Option<f32>,
pub type: Option<EntityType>,
pub text: Option<String>,
pub begin_offset: Option<i32>,
pub end_offset: Option<i32>,
}Expand description
Provides information about an 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<EntityType>The entity's type.
text: Option<String>The text of the entity.
begin_offset: Option<i32>A character offset in the input text that shows where the 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 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 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 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 Entity
impl UnwindSafe for Entity
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
