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

pub struct ProductSearchResults {
    pub index_time: Option<Timestamp>,
    pub results: Vec<Result>,
    pub product_grouped_results: Vec<GroupedResult>,
}

Results for a product search request.

Fields

index_time: Option<Timestamp>

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.

results: Vec<Result>

List of results, one for each product match.

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

Trait Implementations

impl Clone for ProductSearchResults[src]

impl Debug for ProductSearchResults[src]

impl Default for ProductSearchResults[src]

impl Message for ProductSearchResults[src]

impl PartialEq<ProductSearchResults> for ProductSearchResults[src]

impl StructuralPartialEq for ProductSearchResults[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]