Struct tg_bot_models::UnbanChatMember[][src]

pub struct UnbanChatMember {
    pub chat_id: PolymorphChatId,
    pub user_id: i64,
}

Use this method to unban a previously kicked user in a supergroup or channel. The user will not return to the group or channel automatically, but will be able to join via link, etc. The bot must be an administrator for this to work. Returns True on success.

Fields

Unique identifier for the target group or username of the target supergroup or channel (in the format @username)

Unique identifier of the target user

Trait Implementations

impl Debug for UnbanChatMember
[src]

Formats the value using the given formatter. Read more

impl Clone for UnbanChatMember
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for UnbanChatMember
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for UnbanChatMember
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations