Struct google_retail2::api::GoogleCloudRetailV2CustomAttribute[][src]

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

A custom attribute that is not explicitly modeled in Product.

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

Fields

numbers: Option<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 or numbers should be set. Otherwise, an INVALID_ARGUMENT error is returned.

text: Option<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 or numbers should be set. Otherwise, an INVALID_ARGUMENT error is returned.

Trait Implementations

impl Clone for GoogleCloudRetailV2CustomAttribute[src]

impl Debug for GoogleCloudRetailV2CustomAttribute[src]

impl Default for GoogleCloudRetailV2CustomAttribute[src]

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

impl Part for GoogleCloudRetailV2CustomAttribute[src]

impl Serialize for GoogleCloudRetailV2CustomAttribute[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> Instrument 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.