[][src]Struct gcp_client::google::cloud::vision::v1::ProductSet

pub struct ProductSet {
    pub name: String,
    pub display_name: String,
    pub index_time: Option<Timestamp>,
    pub index_error: Option<Status>,
}

A ProductSet contains Products. A ProductSet can contain a maximum of 1 million reference images. If the limit is exceeded, periodic indexing will fail.

Fields

name: String

The resource name of the ProductSet.

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

This field is ignored when creating a ProductSet.

display_name: String

The user-provided name for this ProductSet. Must not be empty. Must be at most 4096 characters long.

index_time: Option<Timestamp>

Output only. The time at which this ProductSet was last indexed. Query results will reflect all updates before this time. If this ProductSet has never been indexed, this timestamp is the default value "1970-01-01T00:00:00Z".

This field is ignored when creating a ProductSet.

index_error: Option<Status>

Output only. If there was an error with indexing the product set, the field is populated.

This field is ignored when creating a ProductSet.

Trait Implementations

impl Clone for ProductSet[src]

impl Debug for ProductSet[src]

impl Default for ProductSet[src]

impl Message for ProductSet[src]

impl PartialEq<ProductSet> for ProductSet[src]

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