Struct google_vision1::api::WebDetection[][src]

pub struct WebDetection {
    pub best_guess_labels: Option<Vec<WebLabel>>,
    pub full_matching_images: Option<Vec<WebImage>>,
    pub pages_with_matching_images: Option<Vec<WebPage>>,
    pub partial_matching_images: Option<Vec<WebImage>>,
    pub visually_similar_images: Option<Vec<WebImage>>,
    pub web_entities: Option<Vec<WebEntity>>,
}

Relevant information for the image from the Internet.

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

Fields

best_guess_labels: Option<Vec<WebLabel>>

The service’s best guess as to the topic of the request image. Inferred from similar images on the open web.

full_matching_images: Option<Vec<WebImage>>

Fully matching images from the Internet. Can include resized copies of the query image.

pages_with_matching_images: Option<Vec<WebPage>>

Web pages containing the matching images from the Internet.

partial_matching_images: Option<Vec<WebImage>>

Partial matching images from the Internet. Those images are similar enough to share some key-point features. For example an original image will likely have partial matching for its crops.

visually_similar_images: Option<Vec<WebImage>>

The visually similar image results.

web_entities: Option<Vec<WebEntity>>

Deduced entities from similar images on the Internet.

Trait Implementations

impl Clone for WebDetection[src]

impl Debug for WebDetection[src]

impl Default for WebDetection[src]

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

impl Part for WebDetection[src]

impl Serialize for WebDetection[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

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

impl<T> Instrument for T[src]

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

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.