[][src]Struct carapax::prelude::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>(chat_id: C, user_id: i64) -> RestrictChatMember where
    C: Into<ChatId>, 
[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 restrict_all(self) -> RestrictChatMember[src]

Restrict everything

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

Allow everything

pub fn until_date(self, until_date: i64) -> RestrictChatMember[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) -> RestrictChatMember[src]

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

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

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

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

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

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

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

Trait Implementations

impl Method for RestrictChatMember[src]

type Response = bool

Type of successful result in API response

impl Debug for RestrictChatMember[src]

impl Serialize for RestrictChatMember[src]

impl Clone for RestrictChatMember[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