Struct telegram_typings::ShippingOption [] [src]

pub struct ShippingOption {
    pub id: String,
    pub title: String,
    pub prices: Vec<Box<LabeledPrice>>,
}

This object represents one shipping option.

Fields

Shipping option identifier

Option title

List of price portions

Trait Implementations

impl Debug for ShippingOption
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ShippingOption
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations