1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use crate::requests::*;
use crate::types::*;

/// Use this method to get information about a member of a chat.
#[derive(Debug, Clone, PartialEq, PartialOrd, Serialize)]
#[must_use = "requests do nothing unless sent"]
pub struct GetChatMember {
    chat_id: ChatRef,
    user_id: UserId,
}

impl Request for GetChatMember {
    type Type = JsonRequestType<Self>;
    type Response = JsonIdResponse<ChatMember>;

    fn serialize(&self) -> Result<HttpRequest, Error> {
        Self::Type::serialize(RequestUrl::method("getChatMember"), self)
    }
}

impl GetChatMember {
    pub fn new<C, U>(chat: C, user: U) -> Self
    where
        C: ToChatRef,
        U: ToUserId,
    {
        GetChatMember {
            chat_id: chat.to_chat_ref(),
            user_id: user.to_user_id(),
        }
    }
}

/// Get information about a member of a chat.
pub trait CanGetChatMemberForChat {
    fn get_member<O>(&self, other: O) -> GetChatMember
    where
        O: ToUserId;
}

impl<C> CanGetChatMemberForChat for C
where
    C: ToChatRef,
{
    fn get_member<O>(&self, other: O) -> GetChatMember
    where
        O: ToUserId,
    {
        GetChatMember::new(self, other)
    }
}

/// Get information about a member of a chat.
pub trait CanGetChatMemberForUser {
    fn get_member_from<O>(&self, other: O) -> GetChatMember
    where
        O: ToChatRef;
}

impl<U> CanGetChatMemberForUser for U
where
    U: ToUserId,
{
    fn get_member_from<O>(&self, other: O) -> GetChatMember
    where
        O: ToChatRef,
    {
        GetChatMember::new(other, self)
    }
}