[][src]Struct google_vision1::ProductSearchParams

pub struct ProductSearchParams {
    pub filter: Option<String>,
    pub product_categories: Option<Vec<String>>,
    pub product_set: Option<String>,
    pub bounding_poly: Option<BoundingPoly>,
}

Parameters for a product search request.

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

Fields

filter: Option<String>

The filtering expression. This can be used to restrict search results based on Product labels. We currently support an AND of OR of key-value expressions, where each expression within an OR must have the same key. An '=' should be used to connect the key and value.

For example, "(color = red OR color = blue) AND brand = Google" is acceptable, but "(color = red OR brand = Google)" is not acceptable. "color: red" is not acceptable because it uses a ':' instead of an '='.

product_categories: Option<Vec<String>>

The list of product categories to search in. Currently, we only consider the first category, and either "homegoods-v2", "apparel-v2", "toys-v2", "packagedgoods-v1", or "general-v1" should be specified. The legacy categories "homegoods", "apparel", and "toys" are still supported but will be deprecated. For new products, please use "homegoods-v2", "apparel-v2", or "toys-v2" for better product search accuracy. It is recommended to migrate existing products to these categories as well.

product_set: Option<String>

The resource name of a ProductSet to be searched for similar images.

Format is: projects/PROJECT_ID/locations/LOC_ID/productSets/PRODUCT_SET_ID.

bounding_poly: Option<BoundingPoly>

The bounding polygon around the area of interest in the image. If it is not specified, system discretion will be applied.

Trait Implementations

impl Clone for ProductSearchParams[src]

impl Debug for ProductSearchParams[src]

impl Default for ProductSearchParams[src]

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

impl Part for ProductSearchParams[src]

impl Serialize for ProductSearchParams[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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<T> Typeable for T where
    T: Any