[][src]Struct google_content2::RateGroup

pub struct RateGroup {
    pub applicable_shipping_labels: Option<Vec<String>>,
    pub carrier_rates: Option<Vec<CarrierRate>>,
    pub main_table: Option<Table>,
    pub name: Option<String>,
    pub single_value: Option<Value>,
    pub subtables: Option<Vec<Table>>,
}

There is no detailed description.

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

Fields

applicable_shipping_labels: Option<Vec<String>>

A list of shipping labels defining the products to which this rate group applies to. This is a disjunction: only one of the labels has to match for the rate group to apply. May only be empty for the last rate group of a service. Required.

carrier_rates: Option<Vec<CarrierRate>>

A list of carrier rates that can be referred to by mainTable or singleValue.

main_table: Option<Table>

A table defining the rate group, when singleValue is not expressive enough. Can only be set if singleValue is not set.

name: Option<String>

Name of the rate group. Optional. If set has to be unique within shipping service.

single_value: Option<Value>

The value of the rate group (e.g. flat rate $10). Can only be set if mainTable and subtables are not set.

subtables: Option<Vec<Table>>

A list of subtables referred to by mainTable. Can only be set if mainTable is set.

Trait Implementations

impl Clone for RateGroup[src]

impl Debug for RateGroup[src]

impl Default for RateGroup[src]

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

impl Part for RateGroup[src]

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