Struct rusoto_devicefarm::MonetaryAmount[][src]

pub struct MonetaryAmount {
    pub amount: Option<f64>,
    pub currency_code: Option<String>,
}

A number representing the monetary amount for an offering or transaction.

Fields

The numerical amount of an offering or transaction.

The currency code of a monetary amount. For example, USD means "U.S. dollars."

Trait Implementations

impl Default for MonetaryAmount
[src]

Returns the "default value" for a type. Read more

impl Debug for MonetaryAmount
[src]

Formats the value using the given formatter. Read more

impl Clone for MonetaryAmount
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MonetaryAmount
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations