pub struct ChatAdministratorRights {
Show 15 fields 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 is_anonymous: bool,
}
Expand description

Represents the rights of an administrator in a chat.

Fields§

§can_change_info: bool

Indicates whether the user is allowed to 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.

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

§can_invite_users: bool

Indicates whether the user is allowed to invite new users to the chat.

§can_manage_chat: bool

Indicates whether the administrator can access the chat event log, boost list in channels, see channel members, report spam messages, see anonymous administrators in supergroups and ignore slow mode.

Implied by any other administrator privilege.

§can_manage_topics: Option<bool>

Indicates whether the user 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 user is allowed to pin messages; groups and supergroups only.

§can_post_messages: Option<bool>

Indicates whether the administrator can post messages in the channel, or access channel statistics; channels only.

§can_post_stories: Option<bool>

Indicates whether the administrator can post stories in the chat.

§can_promote_members: bool

Indicates whether the administrator can add new administrators with a subset of their own privileges or demote administrators that they have 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, or access supergroup statistics.

§is_anonymous: bool

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

Implementations§

source§

impl ChatAdministratorRights

source

pub fn all() -> Self

Creates a new ChatAdministratorRights with all flags set to true.

To create an object with all flags set to false use Self::default method.

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 user is allowed to 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 user is allowed to 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, boost list in channels, see channel members, report spam messages, see anonymous administrators in supergroups and ignore slow mode.
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 user 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 user is allowed to 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 messages in the channel, or access channel statistics; 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 their own privileges or demote administrators that they have 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, or access supergroup statistics.
source

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

Sets a new value for a is_anonymous flag.

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

Trait Implementations§

source§

impl Clone for ChatAdministratorRights

source§

fn clone(&self) -> ChatAdministratorRights

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 ChatAdministratorRights

source§

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

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

impl Default for ChatAdministratorRights

source§

fn default() -> ChatAdministratorRights

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for ChatAdministratorRights

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 ChatAdministratorRights

source§

fn eq(&self, other: &ChatAdministratorRights) -> 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 ChatAdministratorRights

source§

fn partial_cmp(&self, other: &ChatAdministratorRights) -> 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 ChatAdministratorRights

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 Copy for ChatAdministratorRights

source§

impl StructuralPartialEq for ChatAdministratorRights

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