[][src]Struct google_adexchangebuyer2_v2_beta1::Money

pub struct Money {
    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 Part for Money[src]

impl Default for Money[src]

impl Clone for Money[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Money[src]

impl Serialize for Money[src]

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

Auto Trait Implementations

impl Send for Money

impl Unpin for Money

impl Sync for Money

impl UnwindSafe for Money

impl RefUnwindSafe for Money

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]