[][src]Struct gcp_client::google::cloud::vision::v1p4beta1::WebDetection

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

Relevant information for the image from the Internet.

Fields

web_entities: Vec<WebEntity>

Deduced entities from similar images on the Internet.

full_matching_images: Vec<WebImage>

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

partial_matching_images: 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.

pages_with_matching_images: Vec<WebPage>

Web pages containing the matching images from the Internet.

visually_similar_images: Vec<WebImage>

The visually similar image results.

best_guess_labels: 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 Clone for WebDetection[src]

impl Debug for WebDetection[src]

impl Default for WebDetection[src]

impl Message for WebDetection[src]

impl PartialEq<WebDetection> for WebDetection[src]

impl StructuralPartialEq 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> 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> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]