Struct aws_sdk_comprehend::model::SyntaxToken
source · #[non_exhaustive]pub struct SyntaxToken { /* private fields */ }Expand description
Represents a work in the input text that was recognized and assigned a part of speech. There is one syntax token record for each word in the source text.
Implementations§
source§impl SyntaxToken
impl SyntaxToken
sourcepub fn begin_offset(&self) -> Option<i32>
pub fn begin_offset(&self) -> Option<i32>
The zero-based offset from the beginning of the source text to the first character in the word.
sourcepub fn end_offset(&self) -> Option<i32>
pub fn end_offset(&self) -> Option<i32>
The zero-based offset from the beginning of the source text to the last character in the word.
sourcepub fn part_of_speech(&self) -> Option<&PartOfSpeechTag>
pub fn part_of_speech(&self) -> Option<&PartOfSpeechTag>
Provides the part of speech label and the confidence level that Amazon Comprehend has that the part of speech was correctly identified. For more information, see Syntax in the Comprehend Developer Guide.
source§impl SyntaxToken
impl SyntaxToken
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SyntaxToken.
Trait Implementations§
source§impl Clone for SyntaxToken
impl Clone for SyntaxToken
source§fn clone(&self) -> SyntaxToken
fn clone(&self) -> SyntaxToken
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more