[][src]Struct rusoto_rekognition::RegionOfInterest

pub struct RegionOfInterest {
    pub bounding_box: Option<BoundingBox>,
}

Specifies a location within the frame that Rekognition checks for text. Uses a BoundingBox object to set a region of the screen.

A word is included in the region if the word is more than half in that region. If there is more than one region, the word will be compared with all regions of the screen. Any word more than half in a region is kept in the results.

Fields

bounding_box: Option<BoundingBox>

The box representing a region of interest on screen.

Trait Implementations

impl Clone for RegionOfInterest[src]

impl Debug for RegionOfInterest[src]

impl Default for RegionOfInterest[src]

impl PartialEq<RegionOfInterest> for RegionOfInterest[src]

impl Serialize for RegionOfInterest[src]

impl StructuralPartialEq for RegionOfInterest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.