Struct gapi_grpc::google::cloud::retail::v2::CustomAttribute[][src]

pub struct CustomAttribute {
    pub text: Vec<String>,
    pub numbers: Vec<f64>,
}

A custom attribute that is not explicitly modeled in [Product][google.cloud.retail.v2.Product]].

Fields

text: Vec<String>

The textual values of this custom attribute. For example, ["yellow", "green"] when the key is “color”.

At most 400 values are allowed. Empty values are not allowed. Each value must be a UTF-8 encoded string with a length limit of 256 characters. Otherwise, an INVALID_ARGUMENT error is returned.

Exactly one of [text][google.cloud.retail.v2.CustomAttribute.text] or [numbers][google.cloud.retail.v2.CustomAttribute.numbers] should be set. Otherwise, an INVALID_ARGUMENT error is returned.

numbers: Vec<f64>

The numerical values of this custom attribute. For example, [2.3, 15.4] when the key is “lengths_cm”.

At most 400 values are allowed.Otherwise, an INVALID_ARGUMENT error is returned.

Exactly one of [text][google.cloud.retail.v2.CustomAttribute.text] or [numbers][google.cloud.retail.v2.CustomAttribute.numbers] should be set. Otherwise, an INVALID_ARGUMENT error is returned.

Trait Implementations

impl Clone for CustomAttribute[src]

impl Debug for CustomAttribute[src]

impl Default for CustomAttribute[src]

impl Message for CustomAttribute[src]

impl PartialEq<CustomAttribute> for CustomAttribute[src]

impl StructuralPartialEq for CustomAttribute[src]

Auto Trait Implementations

impl RefUnwindSafe for CustomAttribute

impl Send for CustomAttribute

impl Sync for CustomAttribute

impl Unpin for CustomAttribute

impl UnwindSafe for CustomAttribute

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]