Struct aws_sdk_comprehend::model::KeyPhrase [−][src]
#[non_exhaustive]pub struct KeyPhrase {
pub score: Option<f32>,
pub text: Option<String>,
pub begin_offset: Option<i32>,
pub end_offset: Option<i32>,
}Expand description
Describes a key noun phrase.
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.
text: Option<String>The text of a key noun phrase.
begin_offset: Option<i32>A character offset in the input text that shows where the key phrase 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 where the key phrase 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.
A character offset in the input text that shows where the key phrase 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 where the key phrase 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 KeyPhrase
impl UnwindSafe for KeyPhrase
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