[][src]Struct tgbot::methods::RestrictChatMember

pub struct RestrictChatMember { /* fields omitted */ }

Restrict a user in a supergroup

The bot must be an administrator in the supergroup for this to work and must have the appropriate admin rights.

Pass True for all boolean parameters to lift restrictions from a user

Methods

impl RestrictChatMember[src]

pub fn new<C: Into<ChatId>>(chat_id: C, user_id: Integer) -> Self[src]

Creates a new RestrictChatMember with empty optional parameters

Arguments

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

pub fn with_permissions(self, permissions: ChatPermissions) -> Self[src]

Replace current permissions with the new one

pub fn restrict_all(self) -> Self[src]

Restrict everything

pub fn allow_all(self) -> Self[src]

Allow everything

pub fn until_date(self, until_date: Integer) -> Self[src]

Date when restrictions will be lifted for the user, unix time

If user is restricted for more than 366 days or less than 30 seconds from the current time, they are considered to be restricted forever

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

Pass True, if the user can send text messages, contacts, locations and venues

Deprecated, to be removed in tgbot 0.5.0. Use with_permissions() instead.

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

Pass True, if the user can send audios, documents, photos, videos, video notes and voice notes, implies can_send_messages

Deprecated, to be removed in tgbot 0.5.0. Use with_permissions() instead.

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

Pass True, if the user can send animations, games, stickers and use inline bots, implies can_send_media_messages

Deprecated, to be removed in tgbot 0.5.0. Use with_permissions() instead.

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

Pass True, if the user may add web page previews to their messages, implies can_send_media_messages

Deprecated, to be removed in tgbot 0.5.0. Use with_permissions() instead.

Trait Implementations

impl Clone for RestrictChatMember[src]

impl Debug for RestrictChatMember[src]

impl Method for RestrictChatMember[src]

type Response = bool

Type of successful result in API response

impl Serialize for RestrictChatMember[src]

Auto Trait Implementations

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, 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.