mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 14:35:36 +01:00
return TODO
This commit is contained in:
parent
278f9690b7
commit
9a5606f63f
8 changed files with 8 additions and 6 deletions
|
@ -1,4 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
//TODO:: need implementation
|
||||
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct GetFile<'a> {
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
//TODO:: need implementation
|
||||
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct KickChatMember<'a> {
|
||||
#[serde(skip_serializing)]
|
||||
ctx: RequestContext<'a>,
|
||||
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
//TODO:: need implementation
|
||||
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct RestrictChatMember<'a> {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
//TODO:: need implementation
|
||||
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct SendChatAction<'a> {
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
|
||||
//TODO:: need implementation
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct SendContact<'a> {
|
||||
#[serde(skip_serializing)]
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
|
||||
//TODO:: need implementation
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct SendPoll<'a> {
|
||||
#[serde(skip_serializing)]
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
use crate::core::requests::{ChatId, RequestContext};
|
||||
|
||||
//TODO:: need implementation
|
||||
///Use this method to send information about a venue. On success, the sent
|
||||
/// Message is returned.
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
|
@ -40,5 +41,3 @@ struct SendVenue<'a> {
|
|||
#[serde(skip_serializing_if = "Option::is_none")]
|
||||
reply_markup: Option<()>, //TODO: need concrete type
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
use crate::core::requests::RequestContext;
|
||||
|
||||
//TODO:: need implementation
|
||||
#[derive(Debug, Clone, Serialize)]
|
||||
struct UnbanChatMember<'a> {
|
||||
#[serde(skip_serializing)]
|
||||
|
|
Loading…
Reference in a new issue