Struct aws_sdk_rekognition::model::TextDetectionResult
source · [−]#[non_exhaustive]pub struct TextDetectionResult { /* private fields */ }Expand description
Information about text detected in a video. Incudes 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.
Implementations
sourceimpl TextDetectionResult
impl TextDetectionResult
sourcepub fn timestamp(&self) -> i64
pub fn timestamp(&self) -> i64
The time, in milliseconds from the start of the video, that the text was detected.
sourcepub fn text_detection(&self) -> Option<&TextDetection>
pub fn text_detection(&self) -> Option<&TextDetection>
Details about text detected in a video.
sourceimpl TextDetectionResult
impl TextDetectionResult
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TextDetectionResult.
Trait Implementations
sourceimpl Clone for TextDetectionResult
impl Clone for TextDetectionResult
sourcefn clone(&self) -> TextDetectionResult
fn clone(&self) -> TextDetectionResult
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 TextDetectionResult
impl Debug for TextDetectionResult
sourceimpl PartialEq<TextDetectionResult> for TextDetectionResult
impl PartialEq<TextDetectionResult> for TextDetectionResult
sourcefn eq(&self, other: &TextDetectionResult) -> bool
fn eq(&self, other: &TextDetectionResult) -> bool
impl StructuralPartialEq for TextDetectionResult
Auto Trait Implementations
impl RefUnwindSafe for TextDetectionResult
impl Send for TextDetectionResult
impl Sync for TextDetectionResult
impl Unpin for TextDetectionResult
impl UnwindSafe for TextDetectionResult
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