mirror of
https://github.com/teloxide/teloxide.git
synced 2025-03-14 11:44:04 +01:00
Remove stray generics
This commit is contained in:
parent
dad5d5d4b1
commit
4a04750790
2 changed files with 2 additions and 2 deletions
|
@ -104,7 +104,7 @@ impl InlineQueryResultArticle {
|
|||
self
|
||||
}
|
||||
|
||||
pub fn thumb_url<S>(mut self, val: reqwest::Url) -> Self {
|
||||
pub fn thumb_url(mut self, val: reqwest::Url) -> Self {
|
||||
self.thumb_url = Some(val);
|
||||
self
|
||||
}
|
||||
|
|
|
@ -137,7 +137,7 @@ impl InlineQueryResultLocation {
|
|||
self
|
||||
}
|
||||
|
||||
pub fn thumb_url<S>(mut self, val: reqwest::Url) -> Self {
|
||||
pub fn thumb_url(mut self, val: reqwest::Url) -> Self {
|
||||
self.thumb_url = Some(val);
|
||||
self
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue