pub struct AnswerPreCheckoutQuery {
pub pre_checkout_query_id: i64,
pub error_message: String,
}
Expand description
Sets the result of a pre-checkout query; for bots only
Fields§
§pre_checkout_query_id: i64
Identifier of the pre-checkout query
error_message: String
An error message, empty on success
Trait Implementations§
Source§impl Clone for AnswerPreCheckoutQuery
impl Clone for AnswerPreCheckoutQuery
Source§fn clone(&self) -> AnswerPreCheckoutQuery
fn clone(&self) -> AnswerPreCheckoutQuery
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for AnswerPreCheckoutQuery
impl Debug for AnswerPreCheckoutQuery
Source§impl<'de> Deserialize<'de> for AnswerPreCheckoutQuery
impl<'de> Deserialize<'de> for AnswerPreCheckoutQuery
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Method for AnswerPreCheckoutQuery
impl Method for AnswerPreCheckoutQuery
Auto Trait Implementations§
impl Freeze for AnswerPreCheckoutQuery
impl RefUnwindSafe for AnswerPreCheckoutQuery
impl Send for AnswerPreCheckoutQuery
impl Sync for AnswerPreCheckoutQuery
impl Unpin for AnswerPreCheckoutQuery
impl UnwindSafe for AnswerPreCheckoutQuery
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more