[][src]Struct carapax::prelude::PromoteChatMember

pub struct PromoteChatMember { /* fields omitted */ }

Promote or demote a user in a supergroup or a channel

The bot must be an administrator in the chat for this to work and must have the appropriate admin rights Pass False for all boolean parameters to demote a user

Methods

impl PromoteChatMember[src]

pub fn new<C>(chat_id: C, user_id: i64) -> PromoteChatMember where
    C: Into<ChatId>, 
[src]

Creates a new PromoteChatMember with empty optional parameters

Arguments

  • chat_id - Unique identifier for the target chat
  • user_id - Unique identifier of the target user

pub fn promote_all(self) -> PromoteChatMember[src]

Promote all privileges

pub fn demote_all(self) -> PromoteChatMember[src]

Demote all privileges

pub fn can_change_info(self, can_change_info: bool) -> PromoteChatMember[src]

Administrator can change chat title, photo and other settings

pub fn can_post_messages(self, can_post_messages: bool) -> PromoteChatMember[src]

Administrator can create channel posts, channels only

pub fn can_edit_messages(self, can_edit_messages: bool) -> PromoteChatMember[src]

Administrator can edit messages of other users and can pin messages, channels only

pub fn can_delete_messages(self, can_delete_messages: bool) -> PromoteChatMember[src]

Administrator can delete messages of other users

pub fn can_invite_users(self, can_invite_users: bool) -> PromoteChatMember[src]

Administrator can invite new users to the chat

pub fn can_restrict_members(
    self,
    can_restrict_members: bool
) -> PromoteChatMember
[src]

Administrator can restrict, ban or unban chat members

pub fn can_pin_messages(self, can_pin_messages: bool) -> PromoteChatMember[src]

Administrator can pin messages, supergroups only

pub fn can_promote_members(self, can_promote_members: bool) -> PromoteChatMember[src]

Administrator can add new administrators with a subset of his own privileges or demote administrators that he has promoted, directly or indirectly (promoted by administrators that were appointed by him)

Trait Implementations

impl Method for PromoteChatMember[src]

type Response = bool

Type of successful result in API response

impl Debug for PromoteChatMember[src]

impl Serialize for PromoteChatMember[src]

impl Clone for PromoteChatMember[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T