[][src]Struct google_vision1::ProductSearchResults

pub struct ProductSearchResults {
    pub product_grouped_results: Option<Vec<GroupedResult>>,
    pub results: Option<Vec<ResultType>>,
    pub index_time: Option<String>,
}

Results for a product search request.

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

Fields

product_grouped_results: Option<Vec<GroupedResult>>

List of results grouped by products detected in the query image. Each entry corresponds to one bounding polygon in the query image, and contains the matching products specific to that region. There may be duplicate product matches in the union of all the per-product results.

results: Option<Vec<ResultType>>

List of results, one for each product match.

index_time: Option<String>

Timestamp of the index which provided these results. Products added to the product set and products removed from the product set after this time are not reflected in the current results.

Trait Implementations

impl Part for ProductSearchResults[src]

impl Default for ProductSearchResults[src]

impl Clone for ProductSearchResults[src]

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

Performs copy-assignment from source. Read more

impl Debug for ProductSearchResults[src]

impl Serialize for ProductSearchResults[src]

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