fix errors

This commit is contained in:
P0lunin 2019-09-15 22:20:38 +03:00
parent 2437ccad2e
commit 5974402aea

View file

@ -8,6 +8,7 @@ use crate::core::network;
/// shipping_query field to the bot. Use this method to reply to shipping /// shipping_query field to the bot. Use this method to reply to shipping
/// queries. On success, True is returned. /// queries. On success, True is returned.
pub struct AnswerShippingQuery<'a> { pub struct AnswerShippingQuery<'a> {
#[serde(skip_serializing)]
ctx: RequestContext<'a>, ctx: RequestContext<'a>,
/// Unique identifier for the query to be answered /// Unique identifier for the query to be answered
@ -40,7 +41,7 @@ impl<'a> Request<'a> for AnswerShippingQuery<'a> {
&self.ctx.token, &self.ctx.token,
"answerShippingQuery", "answerShippingQuery",
&self &self
) ).await
}) })
} }
} }
@ -77,7 +78,7 @@ impl<'a> AnswerShippingQuery<'a> {
pub fn shipping_options<T>(mut self, shipping_options: T) -> Self pub fn shipping_options<T>(mut self, shipping_options: T) -> Self
where T: Into<Vec<ShippingOption>> where T: Into<Vec<ShippingOption>>
{ {
self.shipping_options = shipping_options; self.shipping_options = Some(shipping_options.into());
self self
} }