Struct aws_sdk_comprehend::output::DetectEntitiesOutput
source · [−]#[non_exhaustive]pub struct DetectEntitiesOutput { /* private fields */ }Implementations
sourceimpl DetectEntitiesOutput
impl DetectEntitiesOutput
sourcepub fn entities(&self) -> Option<&[Entity]>
pub fn entities(&self) -> Option<&[Entity]>
A collection of entities identified in the input text. For each entity, the response provides the entity text, entity type, where the entity text begins and ends, and the level of confidence that Amazon Comprehend has in the detection.
If your request uses a custom entity recognition model, Amazon Comprehend detects the entities that the model is trained to recognize. Otherwise, it detects the default entity types. For a list of default entity types, see Entities in the Comprehend Developer Guide.
sourceimpl DetectEntitiesOutput
impl DetectEntitiesOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DetectEntitiesOutput.
Trait Implementations
sourceimpl Clone for DetectEntitiesOutput
impl Clone for DetectEntitiesOutput
sourcefn clone(&self) -> DetectEntitiesOutput
fn clone(&self) -> DetectEntitiesOutput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DetectEntitiesOutput
impl Debug for DetectEntitiesOutput
sourceimpl PartialEq<DetectEntitiesOutput> for DetectEntitiesOutput
impl PartialEq<DetectEntitiesOutput> for DetectEntitiesOutput
sourcefn eq(&self, other: &DetectEntitiesOutput) -> bool
fn eq(&self, other: &DetectEntitiesOutput) -> bool
impl StructuralPartialEq for DetectEntitiesOutput
Auto Trait Implementations
impl RefUnwindSafe for DetectEntitiesOutput
impl Send for DetectEntitiesOutput
impl Sync for DetectEntitiesOutput
impl Unpin for DetectEntitiesOutput
impl UnwindSafe for DetectEntitiesOutput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more