Struct tgbot::types::ChatMemberAdministrator

source ·
pub struct ChatMemberAdministrator {
Show 18 fields pub user: User, pub can_be_edited: bool, pub can_change_info: bool, pub can_delete_messages: bool, pub can_delete_stories: Option<bool>, pub can_edit_messages: Option<bool>, pub can_edit_stories: Option<bool>, pub can_invite_users: bool, pub can_manage_chat: bool, pub can_manage_topics: Option<bool>, pub can_manage_video_chats: bool, pub can_pin_messages: Option<bool>, pub can_post_messages: Option<bool>, pub can_post_stories: Option<bool>, pub can_promote_members: bool, pub can_restrict_members: bool, pub custom_title: Option<String>, pub is_anonymous: bool,
}
Expand description

Represents a chat administrator.

Fields§

§user: User

Information about the user.

§can_be_edited: bool

Indicates whether a bot is allowed to edit administrator privileges of that user.

§can_change_info: bool

Indicates whether the administrator can change the chat title, photo and other settings.

§can_delete_messages: bool

Indicates whether the administrator can delete messages of other users.

§can_delete_stories: Option<bool>

Indicates whether the administrator can delete stories posted by other users; channels only.

§can_edit_messages: Option<bool>

Indicates whether the administrator can edit messages of other users and can pin messages; channels only.

§can_edit_stories: Option<bool>

Indicates whether the administrator can edit stories posted by other users; channels only.

§can_invite_users: bool

Indicates whether the administrator can invite new users to the chat.

§can_manage_chat: bool

Indicates whether the administrator can access the chat event log, chat statistics, message statistics in channels, see channel members, see anonymous administrators in supergroups and ignore slow mode; implied by any other administrator privilege.

§can_manage_topics: Option<bool>

Indicates whether the administrator is allowed to create, rename, close, and reopen forum topics; supergroups only.

§can_manage_video_chats: bool

Indicates whether the administrator can manage video chats.

§can_pin_messages: Option<bool>

Indicates whether the administrator can pin messages; groups and supergroups only.

§can_post_messages: Option<bool>

Indicates whether the administrator can post in the channel; channels only.

§can_post_stories: Option<bool>

Indicates whether the administrator can post stories in the channel; channels only.

§can_promote_members: bool

Indicates whether the 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 the user).

§can_restrict_members: bool

Indicates whether the administrator can restrict, ban or unban chat members.

§custom_title: Option<String>

Custom title for the administrator.

§is_anonymous: bool

Indicates whether the administrator’s presence in the chat is hidden.

Implementations§

source§

impl ChatMemberAdministrator

source

pub fn new(user: User) -> Self

Creates a new ChatMemberAdministrator

§Arguments
  • user - Information about the user.
source

pub fn with_can_be_edited(self, value: bool) -> Self

Sets a new value for a can_be_edited flag.

§Arguments
  • value - Indicates whether a bot is allowed to edit privileges of that administrator.
source

pub fn with_can_change_info(self, value: bool) -> Self

Sets a new value for a can_change_info flag.

§Arguments
  • value - Indicates whether the administrator can change the chat title, photo and other settings.
source

pub fn with_can_delete_messages(self, value: bool) -> Self

Sets a new value for a can_delete_messages flag.

§Arguments
  • value - Indicates whether the administrator can delete messages of other users.
source

pub fn with_can_delete_stories(self, value: bool) -> Self

Sets a new value for a can_delete_stories flag.

§Arguments
  • value - Indicates whether the administrator can delete stories posted by other users; channels only.
source

pub fn with_can_edit_messages(self, value: bool) -> Self

Sets a new value for a can_edit_messages flag.

§Arguments
  • value - Indicates whether the administrator can edit messages of other users and can pin messages; channels only.
source

pub fn with_can_edit_stories(self, value: bool) -> Self

Sets a new value for a can_edit_stories flag.

§Arguments
  • value - Indicates whether the administrator can edit stories posted by other users; channels only.
source

pub fn with_can_invite_users(self, value: bool) -> Self

Sets a new value for a can_invite_users flag.

§Arguments
  • value - Indicates whether the administrator can invite new users to the chat.
source

pub fn with_can_manage_chat(self, value: bool) -> Self

Sets a new value for a can_manage_chat flag.

§Arguments
  • value - Indicates whether the administrator can access the chat event log, chat statistics, message statistics in channels, see channel members, see anonymous administrators in supergroups and ignore slow mode; implied by any other administrator privilege.
source

pub fn with_can_manage_topics(self, value: bool) -> Self

Sets a new value for a can_manage_topics flag.

§Arguments
  • value - Indicates whether the administrator is allowed to create, rename, close, and reopen forum topics; supergroups only.
source

pub fn with_can_manage_video_chats(self, value: bool) -> Self

Sets a new value for a can_manage_video_chats flag.

§Arguments
  • value - Indicates whether the administrator can manage video chats.
source

pub fn with_can_pin_messages(self, value: bool) -> Self

Sets a new value for a can_pin_messages flag.

§Arguments
  • value - Indicates whether the administrator can pin messages; groups and supergroups only.
source

pub fn with_can_post_messages(self, value: bool) -> Self

Sets a new value for a can_post_messages flag.

§Arguments
  • value - Indicates whether the administrator can post in the channel; channels only.
source

pub fn with_can_post_stories(self, value: bool) -> Self

Sets a new value for a can_post_stories flag.

§Arguments
  • value - Indicates whether the administrator can post stories in the channel; channels only.
source

pub fn with_can_promote_members(self, value: bool) -> Self

Sets a new value for a can_promote_members flag.

§Arguments
  • value - Indicates whether the 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 the user).
source

pub fn with_can_restrict_members(self, value: bool) -> Self

Sets a new value for a can_restrict_members flag.

§Arguments
  • value - Indicates whether the administrator can restrict, ban or unban chat members.
source

pub fn with_custom_title<T>(self, value: T) -> Self
where T: Into<String>,

Sets a new custom title.

§Arguments
  • value - Custom title for the administrator.
source

pub fn with_is_anonymous(self, value: bool) -> Self

Sets a new value for an is_anonymous flag.

§Arguments
  • value - Indicates whether the administrator’s presence in the chat is hidden.

Trait Implementations§

source§

impl Clone for ChatMemberAdministrator

source§

fn clone(&self) -> ChatMemberAdministrator

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for ChatMemberAdministrator

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for ChatMemberAdministrator

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl PartialEq for ChatMemberAdministrator

source§

fn eq(&self, other: &ChatMemberAdministrator) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PartialOrd for ChatMemberAdministrator

source§

fn partial_cmp(&self, other: &ChatMemberAdministrator) -> Option<Ordering>

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

fn lt(&self, other: &Rhs) -> bool

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

fn le(&self, other: &Rhs) -> bool

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

fn gt(&self, other: &Rhs) -> bool

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

fn ge(&self, other: &Rhs) -> bool

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

impl Serialize for ChatMemberAdministrator

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl StructuralPartialEq for ChatMemberAdministrator

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FromRef<T> for T
where T: Clone,

source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<A, B, T> HttpServerConnExec<A, B> for T
where B: Body,