Enum telegram::schema::ChatParticipants []

pub enum ChatParticipants {
    chatParticipantsForbidden {
        chat_id: i32,
    },
    chatParticipants {
        chat_id: i32,
        admin_id: i32,
        participants: Vec<ChatParticipant>,
        version: i32,
    },
}

Variants

Fields of chatParticipantsForbidden

Fields of chatParticipants

Trait Implementations

impl Debug for ChatParticipants
[src]

Formats the value using the given formatter.

impl Serialize for ChatParticipants

Serialize to the passed buffer.