[][src]Struct google_vision1::ImageContext

pub struct ImageContext {
    pub lat_long_rect: Option<LatLongRect>,
    pub language_hints: Option<Vec<String>>,
    pub product_search_params: Option<ProductSearchParams>,
    pub crop_hints_params: Option<CropHintsParams>,
    pub web_detection_params: Option<WebDetectionParams>,
}

Image context and/or feature-specific parameters.

This type is not used in any activity, and only used as part of another schema.

Fields

lat_long_rect: Option<LatLongRect>

Not used.

language_hints: Option<Vec<String>>

List of languages to use for TEXT_DETECTION. In most cases, an empty value yields the best results since it enables automatic language detection. For languages based on the Latin alphabet, setting language_hints is not needed. In rare cases, when the language of the text in the image is known, setting a hint will help get better results (although it will be a significant hindrance if the hint is wrong). Text detection returns an error if one or more of the specified languages is not one of the supported languages.

product_search_params: Option<ProductSearchParams>

Parameters for product search.

crop_hints_params: Option<CropHintsParams>

Parameters for crop hints annotation request.

web_detection_params: Option<WebDetectionParams>

Parameters for web detection.

Trait Implementations

impl Part for ImageContext[src]

impl Default for ImageContext[src]

impl Clone for ImageContext[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for ImageContext[src]

impl Serialize for ImageContext[src]

impl<'de> Deserialize<'de> for ImageContext[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]