[][src]Struct google_vision1::WebDetection

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

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

pages_with_matching_images: Option<Vec<WebPage>>

Web pages containing the matching images from the Internet.

visually_similar_images: Option<Vec<WebImage>>

The visually similar image results.

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.

web_entities: Option<Vec<WebEntity>>

Deduced entities from similar images on the Internet.

full_matching_images: Option<Vec<WebImage>>

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

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.

Trait Implementations

impl Part for WebDetection[src]

impl Default for WebDetection[src]

impl Clone for WebDetection[src]

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

Performs copy-assignment from source. Read more

impl Debug for WebDetection[src]

impl Serialize for WebDetection[src]

impl<'de> Deserialize<'de> for WebDetection[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]