Struct aws_sdk_rekognition::output::GetTextDetectionOutput
source · [−]#[non_exhaustive]pub struct GetTextDetectionOutput { /* private fields */ }Implementations
sourceimpl GetTextDetectionOutput
impl GetTextDetectionOutput
sourcepub fn job_status(&self) -> Option<&VideoJobStatus>
pub fn job_status(&self) -> Option<&VideoJobStatus>
Current status of the text detection job.
sourcepub fn status_message(&self) -> Option<&str>
pub fn status_message(&self) -> Option<&str>
If the job fails, StatusMessage provides a descriptive error message.
sourcepub fn video_metadata(&self) -> Option<&VideoMetadata>
pub fn video_metadata(&self) -> Option<&VideoMetadata>
Information about a video that Amazon Rekognition analyzed. Videometadata is returned in every page of paginated responses from a Amazon Rekognition video operation.
sourcepub fn text_detections(&self) -> Option<&[TextDetectionResult]>
pub fn text_detections(&self) -> Option<&[TextDetectionResult]>
An array of text detected in the video. Each element contains the detected text, the time in milliseconds from the start of the video that the text was detected, and where it was detected on the screen.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
If the response is truncated, Amazon Rekognition Video returns this token that you can use in the subsequent request to retrieve the next set of text.
sourcepub fn text_model_version(&self) -> Option<&str>
pub fn text_model_version(&self) -> Option<&str>
Version number of the text detection model that was used to detect text.
sourceimpl GetTextDetectionOutput
impl GetTextDetectionOutput
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetTextDetectionOutput.
Trait Implementations
sourceimpl Clone for GetTextDetectionOutput
impl Clone for GetTextDetectionOutput
sourcefn clone(&self) -> GetTextDetectionOutput
fn clone(&self) -> GetTextDetectionOutput
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more