[][src]Struct tbot::methods::PromoteChatMember

#[must_use = "methods do nothing unless turned into a future"]pub struct PromoteChatMember<'a, C> { /* fields omitted */ }

Promotes a chat member to an admin.

Reflects the promoteChatMember method.

Methods

impl<'a, C> PromoteChatMember<'a, C>[src]

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

Configures if the user will be able to change the group's information. Reflects the can_change_info parameter.

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

Configures if the user will be able to post messages, if the chat is a channel. Reflects the can_post_messages parameter.

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

Configures if the user will be able to edit messages, if the chat is a channel. Reflects the can_edit_messages parameter.

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

Configures if the user will be able to delete messages. Reflects the can_delete_messages parameter.

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

Configures if the user will be able to invite new users. Reflects the can_invite_users parameter.

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

Configures if the user will be able to restrict members. Reflects the can_restrict_members parameter.

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

Configures if the user will be able to pin messages. Reflects the can_pin_messages parameter.

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

Configures if the user will be able to promote other members. Reflects the can_promote_members parameter.

impl<'_, C: Connector> PromoteChatMember<'_, C>[src]

pub async fn call(self) -> Result<(), MethodCall>[src]

Calls the method.

Trait Implementations

impl<'a, C: Clone> Clone for PromoteChatMember<'a, C>[src]

impl<'a, C: Debug> Debug for PromoteChatMember<'a, C>[src]

impl<'a, C> Serialize for PromoteChatMember<'a, C>[src]

Auto Trait Implementations

impl<'a, C> !RefUnwindSafe for PromoteChatMember<'a, C>

impl<'a, C> Send for PromoteChatMember<'a, C> where
    C: Sync

impl<'a, C> Sync for PromoteChatMember<'a, C> where
    C: Sync

impl<'a, C> Unpin for PromoteChatMember<'a, C>

impl<'a, C> !UnwindSafe for PromoteChatMember<'a, C>

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> WithSubscriber for T[src]