telers 1.0.0-beta.2

An asynchronous framework for Telegram Bot API written in Rust
Documentation
use serde::{Deserialize, Serialize};
/// This object represents a shipping address.
/// # Documentation
/// <https://core.telegram.org/bots/api#shippingaddress>
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct ShippingAddress {
    /// Two-letter ISO 3166-1 alpha-2 country code
    pub country_code: Box<str>,
    /// State, if applicable
    pub state: Box<str>,
    /// City
    pub city: Box<str>,
    /// First line for the address
    pub street_line1: Box<str>,
    /// Second line for the address
    pub street_line2: Box<str>,
    /// Address post code
    pub post_code: Box<str>,
}
impl ShippingAddress {
    /// Creates a new `ShippingAddress`.
    ///
    /// # Arguments
    /// * `country_code` - Two-letter ISO 3166-1 alpha-2 country code
    /// * `state` - State, if applicable
    /// * `city` - City
    /// * `street_line1` - First line for the address
    /// * `street_line2` - Second line for the address
    /// * `post_code` - Address post code
    #[must_use]
    pub fn new<
        T0: Into<Box<str>>,
        T1: Into<Box<str>>,
        T2: Into<Box<str>>,
        T3: Into<Box<str>>,
        T4: Into<Box<str>>,
        T5: Into<Box<str>>,
    >(
        country_code: T0,
        state: T1,
        city: T2,
        street_line1: T3,
        street_line2: T4,
        post_code: T5,
    ) -> Self {
        Self {
            country_code: country_code.into(),
            state: state.into(),
            city: city.into(),
            street_line1: street_line1.into(),
            street_line2: street_line2.into(),
            post_code: post_code.into(),
        }
    }

    /// Two-letter ISO 3166-1 alpha-2 country code
    #[must_use]
    pub fn country_code<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.country_code = val.into();
        this
    }

    /// State, if applicable
    #[must_use]
    pub fn state<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.state = val.into();
        this
    }

    /// City
    #[must_use]
    pub fn city<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.city = val.into();
        this
    }

    /// First line for the address
    #[must_use]
    pub fn street_line1<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.street_line1 = val.into();
        this
    }

    /// Second line for the address
    #[must_use]
    pub fn street_line2<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.street_line2 = val.into();
        this
    }

    /// Address post code
    #[must_use]
    pub fn post_code<T: Into<Box<str>>>(self, val: T) -> Self {
        let mut this = self;
        this.post_code = val.into();
        this
    }
}