[][src]Struct tgbot::methods::AnswerShippingQuery

pub struct AnswerShippingQuery { /* fields omitted */ }

Reply to shipping query

If you sent an invoice requesting a shipping address and the parameter is_flexible was specified, the Bot API will send an Update with a shipping_query field to the bot

Methods

impl AnswerShippingQuery[src]

pub fn ok<S: Into<String>>(
    shipping_query_id: S,
    shipping_options: Vec<ShippingOption>
) -> Self
[src]

Success answer

Arguments

  • shipping_query_id - Unique identifier for the query to be answered
  • shipping_options - Array of available shipping options

pub fn error<S: Into<String>>(shipping_query_id: S, error_message: S) -> Self[src]

Error answer

Arguments

  • shipping_query_id - Unique identifier for the query to be answered
  • error_message - Error message in human readable form

Trait Implementations

impl Clone for AnswerShippingQuery[src]

impl Debug for AnswerShippingQuery[src]

impl Method for AnswerShippingQuery[src]

type Response = bool

Type of successful result in API response

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