[][src]Struct tgbot::methods::AnswerPreCheckoutQuery

pub struct AnswerPreCheckoutQuery { /* fields omitted */ }

Respond to pre-checkout query

Once the user has confirmed their payment and shipping details, the Bot API sends the final confirmation in the form of an Update with the field pre_checkout_query Note: The Bot API must receive an answer within 10 seconds after the pre-checkout query was sent

Methods

impl AnswerPreCheckoutQuery[src]

pub fn ok<S: Into<String>>(pre_checkout_query_id: S) -> Self[src]

Success answer

Arguments

  • pre_checkout_query_id - Unique identifier for the query to be answered

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

Error answer

Arguments

  • pre_checkout_query_id - Unique identifier for the query to be answered
  • error_message - Error message in human readable form that explains the reason for failure to proceed with the checkout

Trait Implementations

impl Clone for AnswerPreCheckoutQuery[src]

impl Debug for AnswerPreCheckoutQuery[src]

impl Method for AnswerPreCheckoutQuery[src]

type Response = bool

Type of successful result in API response

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