[][src]Struct google_recommender1_beta1::GoogleTypeMoney

pub struct GoogleTypeMoney {
    pub nanos: Option<i32>,
    pub units: Option<String>,
    pub currency_code: Option<String>,
}

Represents an amount of money with its currency type.

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

Fields

nanos: Option<i32>

Number of nano (10^-9) units of the amount. The value must be between -999,999,999 and +999,999,999 inclusive. If units is positive, nanos must be positive or zero. If units is zero, nanos can be positive, zero, or negative. If units is negative, nanos must be negative or zero. For example $-1.75 is represented as units=-1 and nanos=-750,000,000.

units: Option<String>

The whole units of the amount. For example if currencyCode is "USD", then 1 unit is one US dollar.

currency_code: Option<String>

The 3-letter currency code defined in ISO 4217.

Trait Implementations

impl Clone for GoogleTypeMoney[src]

impl Debug for GoogleTypeMoney[src]

impl Default for GoogleTypeMoney[src]

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

impl Part for GoogleTypeMoney[src]

impl Serialize for GoogleTypeMoney[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