[][src]Struct google_vision1::WebPage

pub struct WebPage {
    pub page_title: Option<String>,
    pub url: Option<String>,
    pub score: Option<f32>,
    pub partial_matching_images: Option<Vec<WebImage>>,
    pub full_matching_images: Option<Vec<WebImage>>,
}

Metadata for web pages.

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

Fields

page_title: Option<String>

Title for the web page, may contain HTML markups.

url: Option<String>

The result web page URL.

score: Option<f32>

(Deprecated) Overall relevancy score for the web page.

partial_matching_images: Option<Vec<WebImage>>

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

full_matching_images: Option<Vec<WebImage>>

Fully matching images on the page. Can include resized copies of the query image.

Trait Implementations

impl Part for WebPage[src]

impl Default for WebPage[src]

impl Clone for WebPage[src]

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

Performs copy-assignment from source. Read more

impl Debug for WebPage[src]

impl Serialize for WebPage[src]

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

Auto Trait Implementations

impl Send for WebPage

impl Unpin for WebPage

impl Sync for WebPage

impl UnwindSafe for WebPage

impl RefUnwindSafe for WebPage

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]